projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e8eb73
)
timers/nohz: Use lockdep to assert IRQs are disabled/enabled
author
Frederic Weisbecker
<
[email protected]
>
Mon, 6 Nov 2017 15:01:20 +0000
(16:01 +0100)
committer
Ingo Molnar
<
[email protected]
>
Wed, 8 Nov 2017 10:13:49 +0000
(11:13 +0100)
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 <
[email protected]
>
Acked-by: Thomas Gleixner <
[email protected]
>
Cc: David S . Miller <
[email protected]
>
Cc: Lai Jiangshan <
[email protected]
>
Cc: Linus Torvalds <
[email protected]
>
Cc: Paul E. McKenney <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
Cc: Tejun Heo <
[email protected]
>
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Ingo Molnar <
[email protected]
>
kernel/time/tick-sched.c
patch
|
blob
|
history
diff --git
a/kernel/time/tick-sched.c
b/kernel/time/tick-sched.c
index c7a899c5ce643f04fcfa1bbeb9eb97c0d0984016..dd4b7b492c9b2c743c3431ff077160f7df5459a4 100644
(file)
--- a/
kernel/time/tick-sched.c
+++ b/
kernel/time/tick-sched.c
@@
-198,7
+198,7
@@
static bool check_tick_dependency(atomic_t *dep)
static bool can_stop_full_tick(int cpu, struct tick_sched *ts)
{
-
WARN_ON_ONCE(!irqs_disabled()
);
+
lockdep_assert_irqs_disabled(
);
if (unlikely(!cpu_online(cpu)))
return false;
@@
-960,8
+960,7
@@
void tick_nohz_idle_enter(void)
{
struct tick_sched *ts;
- WARN_ON_ONCE(irqs_disabled());
-
+ lockdep_assert_irqs_enabled();
/*
* Update the idle state in the scheduler domain hierarchy
* when tick_nohz_stop_sched_tick() is called from the idle loop.