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 0ac6c5dc49ba..52f392893008 100644 --- a/arch/x86/xen/mmu.c +++ b/arch/x86/xen/mmu.c | |||
@@ -244,9 +244,7 @@ pte_t xen_make_pte(unsigned long long pte) | |||
244 | if (pte & 1) | 244 | if (pte & 1) |
245 | pte = phys_to_machine(XPADDR(pte)).maddr; | 245 | pte = phys_to_machine(XPADDR(pte)).maddr; |
246 | 246 | ||
247 | pte &= ~_PAGE_PCD; | 247 | return (pte_t){ .pte = pte }; |
248 | |||
249 | return (pte_t){ pte, pte >> 32 }; | ||
250 | } | 248 | } |
251 | 249 | ||
252 | pmd_t xen_make_pmd(unsigned long long pmd) | 250 | pmd_t xen_make_pmd(unsigned long long pmd) |