diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-05 11:30:43 -0800 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-06 12:26:08 -0800 |
commit | a034a010f48bf49efe25098c16c16b9708ccbba5 (patch) | |
tree | 7ac8fb36b734be460b9a66f1e591015f4826720c /arch/x86/include/asm/pgtable_64.h | |
parent | 45c82b5a770be66845687a7d027c8b52946d59af (diff) | |
download | blackbird-obmc-linux-a034a010f48bf49efe25098c16c16b9708ccbba5.tar.gz blackbird-obmc-linux-a034a010f48bf49efe25098c16c16b9708ccbba5.zip |
x86: unify pte_none
Impact: cleanup
Unify and demacro pte_none.
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 ba09289accaa..5906a41e8492 100644 --- a/arch/x86/include/asm/pgtable_64.h +++ b/arch/x86/include/asm/pgtable_64.h @@ -171,7 +171,6 @@ static inline int pmd_bad(pmd_t pmd) return (pmd_val(pmd) & ~(PTE_PFN_MASK | _PAGE_USER)) != _KERNPG_TABLE; } -#define pte_none(x) (!pte_val((x))) #define pte_present(x) (pte_val((x)) & (_PAGE_PRESENT | _PAGE_PROTNONE)) #define pages_to_mb(x) ((x) >> (20 - PAGE_SHIFT)) /* FIXME: is this right? */ |