[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [IA64] don't allocate bitmap from low pool
# HG changeset patch # User awilliam@xxxxxxxxxxxx # Date 1166557290 25200 # Node ID 1f811fe10d0a9515290bd4c785a7aed9cfec0e28 # Parent 105ac9be9b3d77797d942d59476d0e05bc42af43 [IA64] don't allocate bitmap from low pool No need to allocate contiguous_bitmap out of the low pages pool as all pages are directly accessible on an ia64. Signed-off-by: Jes Sorensen <jes@xxxxxxx> --- linux-2.6-xen-sparse/arch/ia64/xen/hypervisor.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -r 105ac9be9b3d -r 1f811fe10d0a linux-2.6-xen-sparse/arch/ia64/xen/hypervisor.c --- a/linux-2.6-xen-sparse/arch/ia64/xen/hypervisor.c Tue Dec 19 12:40:06 2006 -0700 +++ b/linux-2.6-xen-sparse/arch/ia64/xen/hypervisor.c Tue Dec 19 12:41:30 2006 -0700 @@ -60,7 +60,7 @@ contiguous_bitmap_init(unsigned long end contiguous_bitmap_init(unsigned long end_pfn) { unsigned long size = (end_pfn + 2 * BITS_PER_LONG) >> 3; - contiguous_bitmap = alloc_bootmem_low_pages(size); + contiguous_bitmap = alloc_bootmem_pages(size); BUG_ON(!contiguous_bitmap); memset(contiguous_bitmap, 0, size); } _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |