diff options
author | Jan Beulich <jbeulich@novell.com> | 2008-09-17 17:48:17 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-13 10:21:18 +0200 |
commit | 606ee44dbb72fd48beb47f171d7b9cecf6ade6dd (patch) | |
tree | f7e773665ac577a3553a1460cf73c33f1cff6162 /include/asm-x86/pgtable.h | |
parent | x86-64: fix combining of regions in init_memory_mapping() (diff) | |
download | linux-606ee44dbb72fd48beb47f171d7b9cecf6ade6dd.tar.xz linux-606ee44dbb72fd48beb47f171d7b9cecf6ade6dd.zip |
x86: make mm/gup.c more virtualization friendly
Since pte_flags() is much cheaper than pte_val() in some virtualized
environments (namely, Xen), use the former whereever possible.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Cc: "Nick Piggin" <npiggin@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/pgtable.h')
-rw-r--r-- | include/asm-x86/pgtable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86/pgtable.h b/include/asm-x86/pgtable.h index 81805403b64a..182f9d4c570f 100644 --- a/include/asm-x86/pgtable.h +++ b/include/asm-x86/pgtable.h @@ -206,7 +206,7 @@ static inline int pte_exec(pte_t pte) static inline int pte_special(pte_t pte) { - return pte_val(pte) & _PAGE_SPECIAL; + return pte_flags(pte) & _PAGE_SPECIAL; } static inline unsigned long pte_pfn(pte_t pte) |