mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 03:54:02 +00:00
lockdep: make cli/sti annotation warnings clearer
make cli/sti annotation warnings easier to interpret. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
This commit is contained in:
parent
f194d132e4
commit
5f9fa8a62d
1 changed files with 9 additions and 4 deletions
|
@ -2654,10 +2654,15 @@ static void check_flags(unsigned long flags)
|
||||||
if (!debug_locks)
|
if (!debug_locks)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (irqs_disabled_flags(flags))
|
if (irqs_disabled_flags(flags)) {
|
||||||
DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled);
|
if (DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled)) {
|
||||||
else
|
printk("possible reason: unannotated irqs-off.\n");
|
||||||
DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled);
|
}
|
||||||
|
} else {
|
||||||
|
if (DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled)) {
|
||||||
|
printk("possible reason: unannotated irqs-on.\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We dont accurately track softirq state in e.g.
|
* We dont accurately track softirq state in e.g.
|
||||||
|
|
Loading…
Add table
Reference in a new issue