search for: xenheap_phys_end

Displaying 4 results from an estimated 4 matches for "xenheap_phys_end".

2007 May 29
0
Fw: [RFC] makedumpfile: xen extraction
...) + (addr & ((1UL << PAGESHIFT()) - 1)); + + return entry; +} + +int +get_xen_info_ia64(struct DumpInfo *info) +{ + unsigned long xen_start, xen_end, xen_heap_start; + int i; + + info->frame_table_vaddr = VIRT_FRAME_TABLE_ADDR; /* "frame_table" is same value */ + + if (SYMBOL(xenheap_phys_end) == NOT_FOUND_SYMBOL) { + ERRMSG("Can''t get the symbol of xenheap_phys_end.\n"); + return FALSE; + } + if (!readmem_xen(info, SYMBOL(xenheap_phys_end), &xen_end, + sizeof(xen_end), "Can''t get the value of xenheap_phys_end.\n")) + return FALSE; + +...
2006 Aug 08
0
[PATCH] fix ia64 per cpu setup ordering
...Signed-off-by: Alex Williamson <alex.williamson@hp.com> --- diff -r 1f05ac8abda6 xen/arch/ia64/xen/xensetup.c --- a/xen/arch/ia64/xen/xensetup.c Tue Aug 08 09:26:10 2006 -0600 +++ b/xen/arch/ia64/xen/xensetup.c Tue Aug 08 12:18:04 2006 -0600 @@ -423,13 +423,14 @@ void start_kernel(void) (xenheap_phys_end-__pa(heap_start)) >> 20, (xenheap_phys_end-__pa(heap_start)) >> 10); + late_setup_arch(&cmdline); + scheduler_init(); idle_vcpu[0] = (struct vcpu*) ia64_r13; idle_domain = domain_create(IDLE_DOMAIN_ID); if ( (idle_domain == NULL) || (alloc_vcpu(idle_domain...
2012 Jan 09
39
[PATCH v4 00/25] xen: ARMv7 with virtualization extensions
Hello everyone, this is the fourth version of the patch series that introduces ARMv7 with virtualization extensions support in Xen. The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile Express simulator. See the following announce email for more informations about what we are trying to achieve, as well as the original git history: See
2011 Dec 06
57
[PATCH RFC 00/25] xen: ARMv7 with virtualization extensions
Hello everyone, this is the very first version of the patch series that introduces ARMv7 with virtualization extensions support in Xen. The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile Express simulator. See the following announce email for more informations about what we are trying to achieve, as well as the original git history: See