summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-02-04 15:48:08 (GMT)
committerIngo Molnar <mingo@elte.hu>2008-02-04 15:48:08 (GMT)
commit6ce9fc17d913ae51f8434d2826f306347820b07d (patch)
tree74480331ccfeacec893679c4b5423a0e93071b42 /arch
parentbde1965ce8c63e17cc284e1af616c85aba483f11 (diff)
downloadlinux-fsl-qoriq-6ce9fc17d913ae51f8434d2826f306347820b07d.tar.xz
x86: remove cpa warning
this race is legit and can happen on SMP systems. 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.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c
index 7288099..0b029c9 100644
--- a/arch/x86/mm/pageattr.c
+++ b/arch/x86/mm/pageattr.c
@@ -356,10 +356,8 @@ static int split_large_page(pte_t *kpte, unsigned long address)
* up for us already:
*/
tmp = lookup_address(address, &level);
- if (tmp != kpte) {
- WARN_ON_ONCE(1);
+ if (tmp != kpte)
goto out_unlock;
- }
address = __pa(address);
addr = address & PMD_PAGE_MASK;