From: Daniel Kiper Date: Mon, 28 Mar 2011 09:32:31 +0000 (+0200) Subject: xen/balloon: Use PageHighMem() for high memory page detection X-Git-Tag: v3.0-rc1~414^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7f3c8f1da1050ad778c3a3930f07c63a5ec570b;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git xen/balloon: Use PageHighMem() for high memory page detection Replace pfn < max_low_pfn by !PageHighMem() in increase_reservation(). It makes more clearer what is going on. Acked-by: Ian Campbell Acked-by: Daniel De Graaf Signed-off-by: Daniel Kiper Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c index 043af8a..61665b2 100644 --- a/drivers/xen/balloon.c +++ b/drivers/xen/balloon.c @@ -246,7 +246,7 @@ static enum bp_state increase_reservation(unsigned long nr_pages) set_phys_to_machine(pfn, frame_list[i]); /* Link back into the page tables if not highmem. */ - if (!xen_hvm_domain() && pfn < max_low_pfn) { + if (!xen_hvm_domain() && !PageHighMem(page)) { int ret; ret = HYPERVISOR_update_va_mapping( (unsigned long)__va(pfn << PAGE_SHIFT),