diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:34:02 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:34:02 -0500 |
commit | d9db847f29bec9957c53fbdc05d65c4286235005 (patch) | |
tree | 7f629a0a010d74e56d03b4ead6f9ef14a0fcbb33 /arch | |
parent | 0d82494ebd256bfff2336689271367f9284b4865 (diff) |
x86: change 64-bit pageattr to use set_pte_atomic()
NOP change - same as set_pte().
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/mm/pageattr_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/pageattr_64.c b/arch/x86/mm/pageattr_64.c index 5a03fb5fd530..34acbcd62eb8 100644 --- a/arch/x86/mm/pageattr_64.c +++ b/arch/x86/mm/pageattr_64.c | |||
@@ -86,7 +86,7 @@ repeat: | |||
86 | prot = canon_pgprot(prot); | 86 | prot = canon_pgprot(prot); |
87 | 87 | ||
88 | if (level == 4) { | 88 | if (level == 4) { |
89 | set_pte(kpte, mk_pte(page, prot)); | 89 | set_pte_atomic(kpte, mk_pte(page, prot)); |
90 | } else { | 90 | } else { |
91 | /* | 91 | /* |
92 | * split_large_page will take the reference for this | 92 | * split_large_page will take the reference for this |
@@ -99,7 +99,7 @@ repeat: | |||
99 | if (!split) | 99 | if (!split) |
100 | return -ENOMEM; | 100 | return -ENOMEM; |
101 | pgprot_val(ref_prot2) &= ~_PAGE_NX; | 101 | pgprot_val(ref_prot2) &= ~_PAGE_NX; |
102 | set_pte(kpte, mk_pte(split, ref_prot2)); | 102 | set_pte_atomic(kpte, mk_pte(split, ref_prot2)); |
103 | goto repeat; | 103 | goto repeat; |
104 | } | 104 | } |
105 | 105 | ||