x86-64: Also clear _PAGE_GLOBAL from __supported_pte_mask if !cpu_has_pge
authorJan Beulich <[email protected]>
Fri, 23 Jan 2015 08:35:13 +0000 (08:35 +0000)
committerIngo Molnar <[email protected]>
Thu, 19 Feb 2015 01:18:26 +0000 (02:18 +0100)
Not just setting it when the feature is available is for
consistency, and may allow Xen to drop its custom clearing of
the flag (unless it needs it cleared earlier than this code
executes). Note that the change is benign to ix86, as the flag
starts out clear there.

Signed-off-by: Jan Beulich <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: H. Peter Anvin <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
arch/x86/mm/init.c

index 079c3b6a3ff181277a7cb4270895f27d9a1d6f8b..090499a363cb3274c4d41ebd45c3d1bc8c73b572 100644 (file)
@@ -179,7 +179,8 @@ static void __init probe_page_size_mask(void)
        if (cpu_has_pge) {
                set_in_cr4(X86_CR4_PGE);
                __supported_pte_mask |= _PAGE_GLOBAL;
-       }
+       } else
+               __supported_pte_mask &= ~_PAGE_GLOBAL;
 }
 
 #ifdef CONFIG_X86_32