diff options
Diffstat (limited to 'arch/x86/xen/mmu.c')
-rw-r--r-- | arch/x86/xen/mmu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c index 3525ef523a74..3f2a67fe6ad6 100644 --- a/arch/x86/xen/mmu.c +++ b/arch/x86/xen/mmu.c | |||
@@ -199,10 +199,8 @@ pgdval_t xen_pgd_val(pgd_t pgd) | |||
199 | 199 | ||
200 | pte_t xen_make_pte(pteval_t pte) | 200 | pte_t xen_make_pte(pteval_t pte) |
201 | { | 201 | { |
202 | if (pte & _PAGE_PRESENT) { | 202 | if (pte & _PAGE_PRESENT) |
203 | pte = phys_to_machine(XPADDR(pte)).maddr; | 203 | pte = phys_to_machine(XPADDR(pte)).maddr; |
204 | pte &= ~(_PAGE_PCD | _PAGE_PWT); | ||
205 | } | ||
206 | 204 | ||
207 | return (pte_t){ .pte = pte }; | 205 | return (pte_t){ .pte = pte }; |
208 | } | 206 | } |