aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/debug/kdb/kdb_bt.c
diff options
context:
space:
mode:
authorJason Wessel <jason.wessel@windriver.com>2010-05-20 22:04:27 -0400
committerJason Wessel <jason.wessel@windriver.com>2010-05-20 22:04:27 -0400
commitd37d39ae3b4a8f9a21114921fb344fe7cadb1abd (patch)
tree2c20219725a12c343429758ec378b5c9d08b04bd /kernel/debug/kdb/kdb_bt.c
parentefe2f29e324fd20e0449bcd6dc6dbe4734c2ba94 (diff)
printk,kdb: capture printk() when in kdb shell
Certain calls from the kdb shell will call out to printk(), and any of these calls should get vectored back to the kdb_printf() so that the kdb pager and processing can be used, as well as to properly channel I/O to the polled I/O devices. CC: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Jason Wessel <jason.wessel@windriver.com> Acked-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'kernel/debug/kdb/kdb_bt.c')
-rw-r--r--kernel/debug/kdb/kdb_bt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/debug/kdb/kdb_bt.c b/kernel/debug/kdb/kdb_bt.c
index 483fa4e7aaac..2f62fe85f16a 100644
--- a/kernel/debug/kdb/kdb_bt.c
+++ b/kernel/debug/kdb/kdb_bt.c
@@ -23,6 +23,7 @@ static void kdb_show_stack(struct task_struct *p, void *addr)
23{ 23{
24 int old_lvl = console_loglevel; 24 int old_lvl = console_loglevel;
25 console_loglevel = 15; 25 console_loglevel = 15;
26 kdb_trap_printk++;
26 kdb_set_current_task(p); 27 kdb_set_current_task(p);
27 if (addr) { 28 if (addr) {
28 show_stack((struct task_struct *)p, addr); 29 show_stack((struct task_struct *)p, addr);
@@ -36,6 +37,7 @@ static void kdb_show_stack(struct task_struct *p, void *addr)
36 show_stack(p, NULL); 37 show_stack(p, NULL);
37 } 38 }
38 console_loglevel = old_lvl; 39 console_loglevel = old_lvl;
40 kdb_trap_printk--;
39} 41}
40 42
41/* 43/*