diff options
Diffstat (limited to 'arch/x86/include/asm/pgtable.h')
-rw-r--r-- | arch/x86/include/asm/pgtable.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h index 72bf53ef60bf..d4cbc8188c8a 100644 --- a/arch/x86/include/asm/pgtable.h +++ b/arch/x86/include/asm/pgtable.h | |||
@@ -519,6 +519,11 @@ static inline int pmd_bad(pmd_t pmd) | |||
519 | return (pmd_val(pmd) & ~(PTE_PFN_MASK | _PAGE_USER)) != _KERNPG_TABLE; | 519 | return (pmd_val(pmd) & ~(PTE_PFN_MASK | _PAGE_USER)) != _KERNPG_TABLE; |
520 | } | 520 | } |
521 | 521 | ||
522 | static inline unsigned long pages_to_mb(unsigned long npg) | ||
523 | { | ||
524 | return npg >> (20 - PAGE_SHIFT); | ||
525 | } | ||
526 | |||
522 | #if PAGETABLE_LEVELS > 2 | 527 | #if PAGETABLE_LEVELS > 2 |
523 | static inline int pud_present(pud_t pud) | 528 | static inline int pud_present(pud_t pud) |
524 | { | 529 | { |