Skip to content

Commit f77084d

Browse files
Sebastian Andrzej SiewiorKAGA-KOKO
authored andcommitted
x86/mm/pat: Disable preemption around __flush_tlb_all()
The WARN_ON_ONCE(__read_cr3() != build_cr3()) in switch_mm_irqs_off() triggers every once in a while during a snapshotted system upgrade. The warning triggers since commit decab08 ("x86/mm: Remove preempt_disable/enable() from __native_flush_tlb()"). The callchain is: get_page_from_freelist() -> post_alloc_hook() -> __kernel_map_pages() with CONFIG_DEBUG_PAGEALLOC enabled. Disable preemption during CR3 reset / __flush_tlb_all() and add a comment why preemption has to be disabled so it won't be removed accidentaly. Add another preemptible() check in __flush_tlb_all() to catch callers with enabled preemption when PGE is enabled, because PGE enabled does not trigger the warning in __native_flush_tlb(). Suggested by Andy Lutomirski. Fixes: decab08 ("x86/mm: Remove preempt_disable/enable() from __native_flush_tlb()") Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Andy Lutomirski <luto@kernel.org> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Borislav Petkov <bp@alien8.de> Cc: stable@vger.kernel.org Link: https://lkml.kernel.org/r/20181017103432.zgv46nlu3hc7k4rq@linutronix.de
1 parent 8af1909 commit f77084d

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

arch/x86/include/asm/tlbflush.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,12 @@ static inline void __native_flush_tlb_one_user(unsigned long addr)
453453
*/
454454
static inline void __flush_tlb_all(void)
455455
{
456+
/*
457+
* This is to catch users with enabled preemption and the PGE feature
458+
* and don't trigger the warning in __native_flush_tlb().
459+
*/
460+
VM_WARN_ON_ONCE(preemptible());
461+
456462
if (boot_cpu_has(X86_FEATURE_PGE)) {
457463
__flush_tlb_global();
458464
} else {

arch/x86/mm/pageattr.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2309,9 +2309,13 @@ void __kernel_map_pages(struct page *page, int numpages, int enable)
23092309

23102310
/*
23112311
* We should perform an IPI and flush all tlbs,
2312-
* but that can deadlock->flush only current cpu:
2312+
* but that can deadlock->flush only current cpu.
2313+
* Preemption needs to be disabled around __flush_tlb_all() due to
2314+
* CR3 reload in __native_flush_tlb().
23132315
*/
2316+
preempt_disable();
23142317
__flush_tlb_all();
2318+
preempt_enable();
23152319

23162320
arch_flush_lazy_mmu_mode();
23172321
}

0 commit comments

Comments
 (0)