mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-29 18:11:20 +00:00
lockdep: minor fix for debug_show_all_locks()
When we failed to get tasklist_lock eventually (count equals 0), we should only print " ignoring it.\n", and not print " locked it.\n" needlessly. Signed-off-by: Qinghuang Feng <qhfeng.kernel@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
03967c5267
commit
46fec7ac40
1 changed files with 3 additions and 2 deletions
|
@ -3417,9 +3417,10 @@ retry:
|
||||||
}
|
}
|
||||||
printk(" ignoring it.\n");
|
printk(" ignoring it.\n");
|
||||||
unlock = 0;
|
unlock = 0;
|
||||||
|
} else {
|
||||||
|
if (count != 10)
|
||||||
|
printk(KERN_CONT " locked it.\n");
|
||||||
}
|
}
|
||||||
if (count != 10)
|
|
||||||
printk(" locked it.\n");
|
|
||||||
|
|
||||||
do_each_thread(g, p) {
|
do_each_thread(g, p) {
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue