aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/pgtable_64.h
diff options
context:
space:
mode:
authorJeremy Fitzhardinge <jeremy@goop.org>2009-02-05 14:31:05 -0500
committerJeremy Fitzhardinge <jeremy@goop.org>2009-02-06 15:31:50 -0500
commit97e2817d3423d753fd2f80ea936a370032846382 (patch)
tree1f33067bf362f5a39c50bb5b75bba951bfb49963 /arch/x86/include/asm/pgtable_64.h
parent3180fba0eec0d14e4ac8183a90d643d0d3383c75 (diff)
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.h3
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)
198 198
199/* PTE - Level 1 access. */ 199/* PTE - Level 1 access. */
200 200
201/* page, protection -> pte */
202#define mk_pte(page, pgprot) pfn_pte(page_to_pfn((page)), (pgprot))
203
204#define pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)) 201#define pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
205#define pte_offset_kernel(dir, address) ((pte_t *) pmd_page_vaddr(*(dir)) + \ 202#define pte_offset_kernel(dir, address) ((pte_t *) pmd_page_vaddr(*(dir)) + \
206 pte_index((address))) 203 pte_index((address)))