diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-05 14:31:06 -0500 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-06 15:31:50 -0500 |
commit | 346309cff6127a38731cf102de3413a562700b84 (patch) | |
tree | 47e2c646b21d3637640b4d93b4ae6485aa4f9fa2 /arch/x86/include/asm/pgtable.h | |
parent | 97e2817d3423d753fd2f80ea936a370032846382 (diff) |
x86: unify pte_index
Impact: cleanup
Unify and demacro pte_index.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'arch/x86/include/asm/pgtable.h')
-rw-r--r-- | arch/x86/include/asm/pgtable.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h index 49b5cff78c28..10a8c2e51789 100644 --- a/arch/x86/include/asm/pgtable.h +++ b/arch/x86/include/asm/pgtable.h | |||
@@ -498,6 +498,17 @@ static inline unsigned pmd_index(unsigned long address) | |||
498 | */ | 498 | */ |
499 | #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot)) | 499 | #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot)) |
500 | 500 | ||
501 | /* | ||
502 | * the pte page can be thought of an array like this: pte_t[PTRS_PER_PTE] | ||
503 | * | ||
504 | * this function returns the index of the entry in the pte page which would | ||
505 | * control the given virtual address | ||
506 | */ | ||
507 | static inline unsigned pte_index(unsigned long address) | ||
508 | { | ||
509 | return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1); | ||
510 | } | ||
511 | |||
501 | #if PAGETABLE_LEVELS > 2 | 512 | #if PAGETABLE_LEVELS > 2 |
502 | static inline int pud_present(pud_t pud) | 513 | static inline int pud_present(pud_t pud) |
503 | { | 514 | { |