diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-05 11:31:05 -0800 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-06 12:31:50 -0800 |
commit | 97e2817d3423d753fd2f80ea936a370032846382 (patch) | |
tree | 1f33067bf362f5a39c50bb5b75bba951bfb49963 /arch/x86/include/asm/pgtable_64.h | |
parent | 3180fba0eec0d14e4ac8183a90d643d0d3383c75 (diff) | |
download | blackbird-obmc-linux-97e2817d3423d753fd2f80ea936a370032846382.tar.gz blackbird-obmc-linux-97e2817d3423d753fd2f80ea936a370032846382.zip |
x86: unify pmd_pfn
Impact: cleanup
Unify pmd_pfn. Unfortunately it can't be demacroed because it has a
cyclic dependency on linux/mm.h:page_to_nid().
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 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/include/asm/pgtable_64.h b/arch/x86/include/asm/pgtable_64.h index 279ddc6a4eb8..adce05628a01 100644 --- a/arch/x86/include/asm/pgtable_64.h +++ b/arch/x86/include/asm/pgtable_64.h @@ -198,9 +198,6 @@ static inline int pud_large(pud_t pte) /* PTE - Level 1 access. */ -/* page, protection -> pte */ -#define mk_pte(page, pgprot) pfn_pte(page_to_pfn((page)), (pgprot)) - #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))) |