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 10a8c2e51789..c61b37af1f28 100644 --- a/arch/x86/include/asm/pgtable.h +++ b/arch/x86/include/asm/pgtable.h | |||
@@ -509,6 +509,11 @@ static inline unsigned pte_index(unsigned long address) | |||
509 | return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1); | 509 | return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1); |
510 | } | 510 | } |
511 | 511 | ||
512 | static inline pte_t *pte_offset_kernel(pmd_t *pmd, unsigned long address) | ||
513 | { | ||
514 | return (pte_t *)pmd_page_vaddr(*pmd) + pte_index(address); | ||
515 | } | ||
516 | |||
512 | #if PAGETABLE_LEVELS > 2 | 517 | #if PAGETABLE_LEVELS > 2 |
513 | static inline int pud_present(pud_t pud) | 518 | static inline int pud_present(pud_t pud) |
514 | { | 519 | { |