x86-64: Fix memory hotplug epfn upper limit test for updating the compat M2P table
authorMalcolm Crossley <malcolm.crossley@citrix.com>
Wed, 25 Apr 2012 10:35:56 +0000 (12:35 +0200)
committerMalcolm Crossley <malcolm.crossley@citrix.com>
Wed, 25 Apr 2012 10:35:56 +0000 (12:35 +0200)
The epfn is being compared to (RDWR_COMPAT_MPT_VIRT_END -
RDWR_COMPAT_MPT_VIRT_START) without a 2 bit shift, resulting in the
epfn being compared to the size of the RDWR_COMPAT_MPT table in bytes
instead of the maximum page frame number that the RDWR_COMPAT_MPT
table can map.

Signed-off-by: Malcolm Crossley <malcolm.crossley@citrix.com>
Committed-by: Jan Beulich <jbeulich@suse.com>
xen/arch/x86/x86_64/mm.c

index 6a71c2860efdd8403057c20c74a410294c9e073c..635a499d65723077d220ae0602c74cef5a6d7b27 100644 (file)
@@ -454,7 +454,7 @@ static int setup_compat_m2p_table(struct mem_hotadd_info *info)
     if   ((smap > ((RDWR_COMPAT_MPT_VIRT_END - RDWR_COMPAT_MPT_VIRT_START) >> 2)) )
         return 0;
 
-    if (epfn > (RDWR_COMPAT_MPT_VIRT_END - RDWR_COMPAT_MPT_VIRT_START))
+    if ( epfn > ((RDWR_COMPAT_MPT_VIRT_END - RDWR_COMPAT_MPT_VIRT_START) >> 2) )
         epfn = (RDWR_COMPAT_MPT_VIRT_END - RDWR_COMPAT_MPT_VIRT_START) >> 2;
 
     emap = ( (epfn + ((1UL << (L2_PAGETABLE_SHIFT - 2)) - 1 )) &