]> xenbits.xensource.com Git - people/aperard/xen-unstable.git/commitdiff
x86/mm: ensure L2 is always freed if empty
authorRoger Pau Monné <roger.pau@citrix.com>
Thu, 14 Nov 2024 15:13:10 +0000 (16:13 +0100)
committerJan Beulich <jbeulich@suse.com>
Thu, 14 Nov 2024 15:13:10 +0000 (16:13 +0100)
The current logic in modify_xen_mappings() allows for fully empty L2 tables to
not be freed and unhooked from the parent L3 if the last L2 slot is not
populated.

Ensure that even when an L2 slot is empty the logic to check whether the whole
L2 can be removed is not skipped.

Fixes: 4376c05c3113 ('x86-64: use 1GB pages in 1:1 mapping if available')
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
xen/arch/x86/mm.c

index b9a2234b53e148e423c3bb1ab9d3f5a649334a1c..5d7e8d78718c5d9b2ad88c735184efadbaa60a53 100644 (file)
@@ -5989,7 +5989,7 @@ int modify_xen_mappings(unsigned long s, unsigned long e, unsigned int nf)
 
             v += 1UL << L2_PAGETABLE_SHIFT;
             v &= ~((1UL << L2_PAGETABLE_SHIFT) - 1);
-            continue;
+            goto check_l3;
         }
 
         if ( l2e_get_flags(*pl2e) & _PAGE_PSE )