Re: [Kgdb-bugreport] [PATCH] kdb: Avoid using dbg_io_ops until it is initialized

From: Dongdong Deng
Date: Wed Sep 21 2011 - 22:52:21 EST


On Thu, Sep 22, 2011 at 4:19 AM, Tim Bird <tim.bird@xxxxxxxxxxx> wrote:
> 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.


Did you get the panic for that case?

Dongdong


>
> Signed-off-by: Tim Bird <tim.bird@xxxxxxxxxxx>
> ---
> Â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
>
>
>
> ------------------------------------------------------------------------------
> All the data continuously generated in your IT infrastructure contains a
> definitive record of customers, application performance, security
> threats, fraudulent activity and more. Splunk takes this data and makes
> sense of it. Business sense. IT sense. Common sense.
> http://p.sf.net/sfu/splunk-d2dcopy1
> _______________________________________________
> Kgdb-bugreport mailing list
> Kgdb-bugreport@xxxxxxxxxxxxxxxxxxxxx
> https://lists.sourceforge.net/lists/listinfo/kgdb-bugreport
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/