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 d4cbc8188c8a..0ef49f3ebc88 100644 --- a/arch/x86/include/asm/pgtable.h +++ b/arch/x86/include/asm/pgtable.h | |||
@@ -525,6 +525,11 @@ static inline unsigned long pages_to_mb(unsigned long npg) | |||
525 | } | 525 | } |
526 | 526 | ||
527 | #if PAGETABLE_LEVELS > 2 | 527 | #if PAGETABLE_LEVELS > 2 |
528 | static inline int pud_none(pud_t pud) | ||
529 | { | ||
530 | return pud_val(pud) == 0; | ||
531 | } | ||
532 | |||
528 | static inline int pud_present(pud_t pud) | 533 | static inline int pud_present(pud_t pud) |
529 | { | 534 | { |
530 | return pud_val(pud) & _PAGE_PRESENT; | 535 | return pud_val(pud) & _PAGE_PRESENT; |