diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-05 11:30:59 -0800 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-06 12:31:49 -0800 |
commit | 3ffb3564cd3cd59de8a0d74430ffe2d43ae11f19 (patch) | |
tree | f1e78915f4cd2a874f6111c8d810003ef6c3f860 /arch/x86/include/asm/pgtable_64.h | |
parent | 3d081b1812bd4de2bbef58c6d598ddf45493010e (diff) | |
download | talos-op-linux-3ffb3564cd3cd59de8a0d74430ffe2d43ae11f19.tar.gz talos-op-linux-3ffb3564cd3cd59de8a0d74430ffe2d43ae11f19.zip |
x86: unify pmd_page_vaddr
Impact: cleanup
Unify and demacro pmd_page_vaddr.
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 958dc1e7335e..7a510e8a8787 100644 --- a/arch/x86/include/asm/pgtable_64.h +++ b/arch/x86/include/asm/pgtable_64.h @@ -191,7 +191,6 @@ static inline int pud_large(pud_t pte) } /* PMD - Level 2 access */ -#define pmd_page_vaddr(pmd) ((unsigned long) __va(pmd_val((pmd)) & PTE_PFN_MASK)) #define pmd_page(pmd) (pfn_to_page(pmd_val((pmd)) >> PAGE_SHIFT)) #define pmd_index(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD - 1)) |