diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-05 11:31:06 -0800 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-06 12:31:50 -0800 |
commit | 346309cff6127a38731cf102de3413a562700b84 (patch) | |
tree | 47e2c646b21d3637640b4d93b4ae6485aa4f9fa2 /arch/x86/include/asm/pgtable_64.h | |
parent | 97e2817d3423d753fd2f80ea936a370032846382 (diff) | |
download | blackbird-obmc-linux-346309cff6127a38731cf102de3413a562700b84.tar.gz blackbird-obmc-linux-346309cff6127a38731cf102de3413a562700b84.zip |
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_64.h')
-rw-r--r-- | arch/x86/include/asm/pgtable_64.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/include/asm/pgtable_64.h b/arch/x86/include/asm/pgtable_64.h index adce05628a01..e7321bc8aa81 100644 --- a/arch/x86/include/asm/pgtable_64.h +++ b/arch/x86/include/asm/pgtable_64.h @@ -198,7 +198,6 @@ static inline int pud_large(pud_t pte) /* PTE - Level 1 access. */ -#define pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)) #define pte_offset_kernel(dir, address) ((pte_t *) pmd_page_vaddr(*(dir)) + \ pte_index((address))) |