Browse Source

x86: CPA remove bogus NX clear

In split_large_page we clear the NX bit for the new split ptes, but we
need to preserve the original setting of it for the split ptes.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Thomas Gleixner 17 years ago
parent
commit
b50516fc20
1 changed files with 0 additions and 1 deletions
  1. 0 1
      arch/x86/mm/pageattr.c

+ 0 - 1
arch/x86/mm/pageattr.c

@@ -225,7 +225,6 @@ static int split_large_page(pte_t *kpte, unsigned long address)
 	paravirt_alloc_pt(&init_mm, page_to_pfn(base));
 	paravirt_alloc_pt(&init_mm, page_to_pfn(base));
 #endif
 #endif
 
 
-	pgprot_val(ref_prot) &= ~_PAGE_NX;
 	for (i = 0; i < PTRS_PER_PTE; i++, addr += PAGE_SIZE)
 	for (i = 0; i < PTRS_PER_PTE; i++, addr += PAGE_SIZE)
 		set_pte(&pbase[i], pfn_pte(addr >> PAGE_SHIFT, ref_prot));
 		set_pte(&pbase[i], pfn_pte(addr >> PAGE_SHIFT, ref_prot));