Commit 7a9b8bdb authored by Peter Zijlstra's avatar Peter Zijlstra Committed by Dave Hansen

x86/mm/pae: Don't (ab)use atomic64

PAE implies CX8, write readable code.
Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20221022114424.971450128%40infradead.org
parent 1180e732
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
#ifndef _ASM_X86_PGTABLE_3LEVEL_H #ifndef _ASM_X86_PGTABLE_3LEVEL_H
#define _ASM_X86_PGTABLE_3LEVEL_H #define _ASM_X86_PGTABLE_3LEVEL_H
#include <asm/atomic64_32.h>
/* /*
* Intel Physical Address Extension (PAE) Mode - three-level page * Intel Physical Address Extension (PAE) Mode - three-level page
* tables on PPro+ CPUs. * tables on PPro+ CPUs.
...@@ -95,11 +93,12 @@ static inline void pud_clear(pud_t *pudp) ...@@ -95,11 +93,12 @@ static inline void pud_clear(pud_t *pudp)
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
static inline pte_t native_ptep_get_and_clear(pte_t *ptep) static inline pte_t native_ptep_get_and_clear(pte_t *ptep)
{ {
pte_t res; pte_t old = *ptep;
res.pte = (pteval_t)arch_atomic64_xchg((atomic64_t *)ptep, 0); do {
} while (!try_cmpxchg64(&ptep->pte, &old.pte, 0ULL));
return res; return old;
} }
#else #else
#define native_ptep_get_and_clear(xp) native_local_ptep_get_and_clear(xp) #define native_ptep_get_and_clear(xp) native_local_ptep_get_and_clear(xp)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment