diff options
Diffstat (limited to 'arch/x86/include/asm/pgtable.h')
-rw-r--r-- | arch/x86/include/asm/pgtable.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h index bd38feb34921..a871ae55a5c5 100644 --- a/arch/x86/include/asm/pgtable.h +++ b/arch/x86/include/asm/pgtable.h | |||
@@ -438,6 +438,7 @@ static inline void __init paravirt_pagetable_setup_done(pgd_t *base) | |||
438 | #endif | 438 | #endif |
439 | 439 | ||
440 | #ifndef __ASSEMBLY__ | 440 | #ifndef __ASSEMBLY__ |
441 | #include <linux/mm_types.h> | ||
441 | 442 | ||
442 | static inline int pte_none(pte_t pte) | 443 | static inline int pte_none(pte_t pte) |
443 | { | 444 | { |
@@ -477,6 +478,11 @@ static inline unsigned long pud_page_vaddr(pud_t pud) | |||
477 | { | 478 | { |
478 | return (unsigned long)__va((unsigned long)pud_val(pud) & PTE_PFN_MASK); | 479 | return (unsigned long)__va((unsigned long)pud_val(pud) & PTE_PFN_MASK); |
479 | } | 480 | } |
481 | |||
482 | static inline struct page *pud_page(pud_t pud) | ||
483 | { | ||
484 | return pfn_to_page(pud_val(pud) >> PAGE_SHIFT); | ||
485 | } | ||
480 | #endif /* PAGETABLE_LEVELS > 2 */ | 486 | #endif /* PAGETABLE_LEVELS > 2 */ |
481 | 487 | ||
482 | #if PAGETABLE_LEVELS > 3 | 488 | #if PAGETABLE_LEVELS > 3 |