diff options
Diffstat (limited to 'arch/x86/kernel/paravirt.c')
-rw-r--r-- | arch/x86/kernel/paravirt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/kernel/paravirt.c b/arch/x86/kernel/paravirt.c index e9b504537212..78c9a1b9e6b0 100644 --- a/arch/x86/kernel/paravirt.c +++ b/arch/x86/kernel/paravirt.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <asm/setup.h> | 30 | #include <asm/setup.h> |
31 | #include <asm/arch_hooks.h> | 31 | #include <asm/arch_hooks.h> |
32 | #include <asm/time.h> | 32 | #include <asm/time.h> |
33 | #include <asm/pgalloc.h> | ||
33 | #include <asm/irq.h> | 34 | #include <asm/irq.h> |
34 | #include <asm/delay.h> | 35 | #include <asm/delay.h> |
35 | #include <asm/fixmap.h> | 36 | #include <asm/fixmap.h> |
@@ -366,6 +367,9 @@ struct pv_mmu_ops pv_mmu_ops = { | |||
366 | .flush_tlb_single = native_flush_tlb_single, | 367 | .flush_tlb_single = native_flush_tlb_single, |
367 | .flush_tlb_others = native_flush_tlb_others, | 368 | .flush_tlb_others = native_flush_tlb_others, |
368 | 369 | ||
370 | .pgd_alloc = __paravirt_pgd_alloc, | ||
371 | .pgd_free = paravirt_nop, | ||
372 | |||
369 | .alloc_pte = paravirt_nop, | 373 | .alloc_pte = paravirt_nop, |
370 | .alloc_pmd = paravirt_nop, | 374 | .alloc_pmd = paravirt_nop, |
371 | .alloc_pmd_clone = paravirt_nop, | 375 | .alloc_pmd_clone = paravirt_nop, |