ia64/xen-unstable
changeset 19091:fa5887d90110
x86_64: No restriction on Xen heap address width.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Mon Jan 26 16:21:21 2009 +0000 (2009-01-26) |
parents | 39517e863cc8 |
children | beba88f6f90d |
files | xen/common/page_alloc.c |
line diff
1.1 --- a/xen/common/page_alloc.c Mon Jan 26 16:19:42 2009 +0000 1.2 +++ b/xen/common/page_alloc.c Mon Jan 26 16:21:21 2009 +0000 1.3 @@ -703,8 +703,7 @@ void *alloc_xenheap_pages(unsigned int o 1.4 ASSERT(!in_irq()); 1.5 1.6 pg = alloc_heap_pages( 1.7 - MEMZONE_XEN+1, bits_to_zone(32), 1.8 - cpu_to_node(smp_processor_id()), order); 1.9 + MEMZONE_XEN+1, NR_ZONES-1, cpu_to_node(smp_processor_id()), order); 1.10 if ( unlikely(pg == NULL) ) 1.11 goto no_memory; 1.12