* Fwd: [PATCH] kdb: Avoid using dbg_io_ops until it is initialized
@ 2012-03-20 16:34 Tim Bird
2012-03-20 17:14 ` Jason Wessel
0 siblings, 1 reply; 2+ messages in thread
From: Tim Bird @ 2012-03-20 16:34 UTC (permalink / raw)
To: Jason Wessel; +Cc: kgdb-bugreport@lists.sourceforge.net, linux kernel
Jason,
This patch has apparently fallen through the cracks. Can you please apply?
This fixes a kernel panic for a use case where I'm setting a breakpoint
from kdb_cmds on kernel startup. In this case, without this patch
dbg_io_ops is used before it is initialized.
Thanks,
-- Tim
-------- Original Message --------
Subject: [PATCH] kdb: Avoid using dbg_io_ops until it is initialized
Date: Wed, 21 Sep 2011 13:19:12 -0700
From: Tim Bird <tim.bird@am.sony.com>
To: Jason Wessel <jason.wessel@windriver.com>
CC: kgdb-bugreport@lists.sourceforge.net <kgdb-bugreport@lists.sourceforge.net>, linux kernel <linux-kernel@vger.kernel.org>
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 in
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 <tim.bird@am.sony.com>
---
kernel/debug/kdb/kdb_io.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/debug/kdb/kdb_io.c b/kernel/debug/kdb/kdb_io.c
index c9b7f4f..3bc995f 100644
--- a/kernel/debug/kdb/kdb_io.c
+++ b/kernel/debug/kdb/kdb_io.c
@@ -675,7 +675,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--) {
--
1.7.2.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: Fwd: [PATCH] kdb: Avoid using dbg_io_ops until it is initialized
2012-03-20 16:34 Fwd: [PATCH] kdb: Avoid using dbg_io_ops until it is initialized Tim Bird
@ 2012-03-20 17:14 ` Jason Wessel
0 siblings, 0 replies; 2+ messages in thread
From: Jason Wessel @ 2012-03-20 17:14 UTC (permalink / raw)
To: Tim Bird; +Cc: kgdb-bugreport@lists.sourceforge.net, linux kernel
On 03/20/2012 11:34 AM, Tim Bird wrote:
> Jason,
>
> This patch has apparently fallen through the cracks. Can you please apply?
> This fixes a kernel panic for a use case where I'm setting a breakpoint
> from kdb_cmds on kernel startup. In this case, without this patch
> dbg_io_ops is used before it is initialized.
Many thanks Tim.
I'll review/regression test this and add it to the merge queue. I found another patch from you in the same week from last year that I will also review. I am not exactly sure why these never made it to my review list, but what once was lost is now found.
Cheers,
Jason.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-03-20 17:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-20 16:34 Fwd: [PATCH] kdb: Avoid using dbg_io_ops until it is initialized Tim Bird
2012-03-20 17:14 ` Jason Wessel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).