Commit 9b8c90eb authored by Paul Mundt's avatar Paul Mundt

sh: show held locks in stack trace with lockdep.

Follows the same change as other architectures..
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 0c020e3d
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/kallsyms.h> #include <linux/kallsyms.h>
#include <linux/io.h> #include <linux/io.h>
#include <linux/debug_locks.h>
#include <asm/system.h> #include <asm/system.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
...@@ -872,6 +873,11 @@ void show_trace(struct task_struct *tsk, unsigned long *sp, ...@@ -872,6 +873,11 @@ void show_trace(struct task_struct *tsk, unsigned long *sp,
} }
printk("\n"); printk("\n");
if (!tsk)
tsk = current;
debug_show_held_locks(tsk);
} }
void show_stack(struct task_struct *tsk, unsigned long *sp) void show_stack(struct task_struct *tsk, unsigned long *sp)
......
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