diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-05 14:30:59 -0500 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-06 15:31:49 -0500 |
commit | 3ffb3564cd3cd59de8a0d74430ffe2d43ae11f19 (patch) | |
tree | f1e78915f4cd2a874f6111c8d810003ef6c3f860 /arch/x86/include/asm/pgtable.h | |
parent | 3d081b1812bd4de2bbef58c6d598ddf45493010e (diff) |
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.h')
-rw-r--r-- | arch/x86/include/asm/pgtable.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h index decccb0a6410..3789c05bf30a 100644 --- a/arch/x86/include/asm/pgtable.h +++ b/arch/x86/include/asm/pgtable.h | |||
@@ -468,6 +468,11 @@ static inline int pmd_none(pmd_t pmd) | |||
468 | return !(unsigned long)native_pmd_val(pmd); | 468 | return !(unsigned long)native_pmd_val(pmd); |
469 | } | 469 | } |
470 | 470 | ||
471 | static inline unsigned long pmd_page_vaddr(pmd_t pmd) | ||
472 | { | ||
473 | return (unsigned long)__va(pmd_val(pmd) & PTE_PFN_MASK); | ||
474 | } | ||
475 | |||
471 | #if PAGETABLE_LEVELS > 2 | 476 | #if PAGETABLE_LEVELS > 2 |
472 | static inline int pud_present(pud_t pud) | 477 | static inline int pud_present(pud_t pud) |
473 | { | 478 | { |