diff options
Diffstat (limited to 'include/asm-i386/pgtable-2level.h')
-rw-r--r-- | include/asm-i386/pgtable-2level.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/asm-i386/pgtable-2level.h b/include/asm-i386/pgtable-2level.h index 85d9005c0cdf..3daab67cd366 100644 --- a/include/asm-i386/pgtable-2level.h +++ b/include/asm-i386/pgtable-2level.h | |||
@@ -41,10 +41,24 @@ static inline void native_pte_clear(struct mm_struct *mm, unsigned long addr, pt | |||
41 | *xp = __pte(0); | 41 | *xp = __pte(0); |
42 | } | 42 | } |
43 | 43 | ||
44 | /* local pte updates need not use xchg for locking */ | ||
45 | static inline pte_t native_local_ptep_get_and_clear(pte_t *ptep) | ||
46 | { | ||
47 | pte_t res; | ||
48 | |||
49 | res = *ptep; | ||
50 | native_pte_clear(NULL, 0, ptep); | ||
51 | return res; | ||
52 | } | ||
53 | |||
54 | #ifdef CONFIG_SMP | ||
44 | static inline pte_t native_ptep_get_and_clear(pte_t *xp) | 55 | static inline pte_t native_ptep_get_and_clear(pte_t *xp) |
45 | { | 56 | { |
46 | return __pte(xchg(&xp->pte_low, 0)); | 57 | return __pte(xchg(&xp->pte_low, 0)); |
47 | } | 58 | } |
59 | #else | ||
60 | #define native_ptep_get_and_clear(xp) native_local_ptep_get_and_clear(xp) | ||
61 | #endif | ||
48 | 62 | ||
49 | #define pte_page(x) pfn_to_page(pte_pfn(x)) | 63 | #define pte_page(x) pfn_to_page(pte_pfn(x)) |
50 | #define pte_none(x) (!(x).pte_low) | 64 | #define pte_none(x) (!(x).pte_low) |