Commit a76dd8f3 authored by Thomas Gleixner's avatar Thomas Gleixner

x86: convert nmi_lock to atomic_spinlock

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 58814bae
......@@ -416,12 +416,12 @@ nmi_watchdog_tick(struct pt_regs *regs, unsigned reason)
/* We can be called before check_nmi_watchdog, hence NULL check. */
if (backtrace_mask != NULL && cpumask_test_cpu(cpu, backtrace_mask)) {
static DEFINE_SPINLOCK(lock); /* Serialise the printks */
static DEFINE_ATOMIC_SPINLOCK(lock); /* Serialise the printks */
spin_lock(&lock);
atomic_spin_lock(&lock);
printk(KERN_WARNING "NMI backtrace for cpu %d\n", cpu);
dump_stack();
spin_unlock(&lock);
atomic_spin_unlock(&lock);
cpumask_clear_cpu(cpu, backtrace_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