From: Tim Bird Date: Wed, 21 Sep 2011 20:19:12 +0000 (-0700) Subject: kdb: Avoid using dbg_io_ops until it is initialized X-Git-Tag: v3.4-rc2~17^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b8adde8ddec9ff62a21564fa8020b5463e70d4de;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git kdb: Avoid using dbg_io_ops until it is initialized This fixes a bug with setting a breakpoint during kdb initialization (from kdb_cmds). Any call to kdb_printf() before the initialization of the kgdboc serial console driver (which happens much later during bootup than kdb_init), results in kernel panic due to the use of dbg_io_ops before it is initialized. Signed-off-by: Tim Bird Signed-off-by: Jason Wessel --- diff --git a/kernel/debug/kdb/kdb_io.c b/kernel/debug/kdb/kdb_io.c index 4802eb5..9b5f17d 100644 --- a/kernel/debug/kdb/kdb_io.c +++ b/kernel/debug/kdb/kdb_io.c @@ -689,7 +689,7 @@ kdb_printit: if (!dbg_kdb_mode && kgdb_connected) { gdbstub_msg_write(kdb_buffer, retlen); } else { - if (!dbg_io_ops->is_console) { + if (dbg_io_ops && !dbg_io_ops->is_console) { len = strlen(kdb_buffer); cp = kdb_buffer; while (len--) {