mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
smp/core: Use lockdep to assert IRQs are disabled/enabled
Use lockdep to check that IRQs are enabled or disabled as expected. This way the sanity check only shows overhead when concurrency correctness debug code is enabled. Signed-off-by: Frederic Weisbecker <frederic@kernel.org> Acked-by: Thomas Gleixner <tglx@linutronix.de> Cc: David S . Miller <davem@davemloft.net> Cc: Lai Jiangshan <jiangshanlai@gmail.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Tejun Heo <tj@kernel.org> Link: http://lkml.kernel.org/r/1509980490-4285-7-git-send-email-frederic@kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
53bef3fd47
commit
83efcbd028
@ -213,7 +213,7 @@ static void flush_smp_call_function_queue(bool warn_cpu_offline)
|
||||
call_single_data_t *csd, *csd_next;
|
||||
static bool warned;
|
||||
|
||||
WARN_ON(!irqs_disabled());
|
||||
lockdep_assert_irqs_disabled();
|
||||
|
||||
head = this_cpu_ptr(&call_single_queue);
|
||||
entry = llist_del_all(head);
|
||||
|
Loading…
Reference in New Issue
Block a user