Commit 6ce9fc17 authored by Ingo Molnar's avatar Ingo Molnar

x86: remove cpa warning

this race is legit and can happen on SMP systems.
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent bde1965c
......@@ -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;
......
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