From: Jason Wessel <jason.wessel@windriver.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org,
kgdb-bugreport@lists.sourceforge.net, mingo@elte.hu,
Randy Dunlap <randy.dunlap@oracle.com>
Subject: Re: [PATCH 22/28] printk,kdb: capture printk() when in kdb shell
Date: Mon, 15 Feb 2010 21:12:45 -0600 [thread overview]
Message-ID: <4B7A0D2D.2010806@windriver.com> (raw)
In-Reply-To: <20100212203922.d8fef332.akpm@linux-foundation.org>
[-- Attachment #1: Type: text/plain, Size: 787 bytes --]
Andrew Morton wrote:
> On Fri, 12 Feb 2010 17:20:22 -0600 Jason Wessel <jason.wessel@windriver.com> wrote:
>
>
>> If you feel that would be cleaner, I can make that change, but I would
>> also have to call vprintk() from vkdb_printf when ever kdb_trap_printk
>> is not set. Do I understand your recommendation correctly?
>>
>>
>
> Was trying to find
> a way to avoid the code duplication.
>
>
>
You did make me think about the interface a bit further. If you were
going to ack one of the versions of this patch, which would you prefer?
The previous version, this new version or something else?
The difference here is that we use a replaced function call vs using the
if statement. There are more lines source in the kdb, but the interface
api is clean.
Thanks,
Jason.
[-- Attachment #2: kdb_printk_integration.patch --]
[-- Type: text/x-diff, Size: 5078 bytes --]
From: Jason Wessel <jason.wessel@windriver.com>
Subject: [PATCH] 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 <randy.dunlap@oracle.com>
CC: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
---
include/linux/kdb.h | 6 ++++
kernel/debug/kdb/kdb_bt.c | 2 +
kernel/debug/kdb/kdb_io.c | 56 ++++++++++++++++++++++++++++++++++++++++----
kernel/debug/kdb/kdb_main.c | 4 +++
kernel/printk.c | 8 +++++-
5 files changed, 71 insertions(+), 5 deletions(-)
--- a/include/linux/kdb.h
+++ b/include/linux/kdb.h
@@ -78,6 +78,12 @@ typedef enum {
KDB_REASON_SSTEP, /* Single Step trap. - regs valid */
} kdb_reason_t;
+/* kdb printk and lowlevel kernel printk interface */
+extern asmlinkage int (*vprintk_func) (const char *, va_list);
+extern void kdb_trap_printk_enable(void);
+extern void kdb_trap_printk_disable(void);
+extern asmlinkage int vkdb_printf(const char *fmt, va_list args)
+ __attribute__ ((format (printf, 1, 0)));
extern int kdb_printf(const char *, ...)
__attribute__ ((format (printf, 1, 2)));
typedef int (*kdb_printf_t)(const char *, ...)
--- 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_s
{
int old_lvl = console_loglevel;
console_loglevel = 15;
+ kdb_trap_printk_enable();
kdb_set_current_task(p);
if (addr) {
show_stack((struct task_struct *)p, addr);
@@ -36,6 +37,7 @@ static void kdb_show_stack(struct task_s
show_stack(p, NULL);
}
console_loglevel = old_lvl;
+ kdb_trap_printk_disable();
}
/*
--- a/kernel/printk.c
+++ b/kernel/printk.c
@@ -582,6 +582,12 @@ static int have_callable_console(void)
return 0;
}
+#ifdef CONFIG_KGDB_KDB
+asmlinkage int (*vprintk_func) (const char *, va_list) = vprintk;
+#else
+#define vprintk_func(x, y) vprintk(x, y)
+#endif
+
/**
* printk - print a kernel message
* @fmt: format string
@@ -610,7 +616,7 @@ asmlinkage int printk(const char *fmt, .
int r;
va_start(args, fmt);
- r = vprintk(fmt, args);
+ r = vprintk_func(fmt, args);
va_end(args);
return r;
--- a/kernel/debug/kdb/kdb_io.c
+++ b/kernel/debug/kdb/kdb_io.c
@@ -29,6 +29,36 @@
#define CMD_BUFLEN 256
char kdb_prompt_str[CMD_BUFLEN];
+static int kdb_trap_printk;
+
+#ifdef CONFIG_PRINTK
+static inline void kdb_vprintk_func_set(void)
+{
+ vprintk_func = vkdb_printf;
+}
+
+static inline void kdb_vprintk_func_restore(void)
+{
+ vprintk_func = vprintk;
+}
+#else /* ! CONFIG_PRINTK */
+#define kdb_vprintk_func_set()
+#define kdb_vprintk_func_restore()
+#endif /* ! CONFIG_PRINTK */
+
+void kdb_trap_printk_enable(void)
+{
+ if (!kdb_trap_printk)
+ kdb_vprintk_func_set();
+ kdb_trap_printk++;
+}
+
+void kdb_trap_printk_disable(void)
+{
+ kdb_trap_printk--;
+ if (!kdb_trap_printk)
+ kdb_vprintk_func_restore();
+}
static void kgdb_transition_check(char *buffer)
{
@@ -533,12 +563,12 @@ static int kdb_search_string(char *searc
return 0;
}
-int kdb_printf(const char *fmt, ...)
+asmlinkage int vkdb_printf(const char *fmt, va_list ap)
{
- va_list ap;
int diag;
int linecount;
int logging, saved_loglevel = 0;
+ int saved_trap_printk;
int got_printf_lock = 0;
int retlen = 0;
int fnd, len;
@@ -549,6 +579,10 @@ int kdb_printf(const char *fmt, ...)
unsigned long uninitialized_var(flags);
preempt_disable();
+ saved_trap_printk = kdb_trap_printk;
+ kdb_trap_printk = 0;
+ kdb_vprintk_func_restore();
+
/* Serialize kdb_printf if multiple cpus try to write at once.
* But if any cpu goes recursive in kdb, just print the output,
* even if it is interleaved with any other text.
@@ -575,9 +609,7 @@ int kdb_printf(const char *fmt, ...)
next_avail = kdb_buffer;
size_avail = sizeof(kdb_buffer);
}
- va_start(ap, fmt);
vsnprintf(next_avail, size_avail, fmt, ap);
- va_end(ap);
/*
* If kdb_parse() found that the command was cmd xxx | grep yyy
@@ -805,6 +837,22 @@ kdb_print_out:
} else {
__release(kdb_printf_lock);
}
+ kdb_trap_printk = saved_trap_printk;
+ if (kdb_trap_printk > 0)
+ kdb_vprintk_func_set();
preempt_enable();
return retlen;
}
+
+int kdb_printf(const char *fmt, ...)
+{
+ va_list ap;
+ int r;
+
+ va_start(ap, fmt);
+ r = vkdb_printf(fmt, ap);
+ va_end(ap);
+
+ return r;
+}
+
--- a/kernel/debug/kdb/kdb_main.c
+++ b/kernel/debug/kdb/kdb_main.c
@@ -1056,7 +1056,9 @@ static void kdb_dumpregs(struct pt_regs
{
int old_lvl = console_loglevel;
console_loglevel = 15;
+ kdb_trap_printk_enable();
show_regs(regs);
+ kdb_trap_printk_disable();
kdb_printf("\n");
console_loglevel = old_lvl;
}
@@ -1823,7 +1825,9 @@ static int kdb_sr(int argc, const char *
__sysrq_enabled = 1;
}
+ kdb_trap_printk_enable();
handle_sysrq(*argv[1], NULL);
+ kdb_trap_printk_disable();
return 0;
}
next prev parent reply other threads:[~2010-02-16 3:13 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-12 22:35 [PATCH 0/28] kgdb, kdb proposed merge for 2.6.34 Jason Wessel
2010-02-12 22:35 ` [PATCH 01/28] Move kernel/kgdb.c to kernel/debug/debug_core.c Jason Wessel
2010-02-12 22:35 ` [PATCH 02/28] Separate the gdbstub from the debug core Jason Wessel
2010-02-12 22:35 ` [PATCH 03/28] kgdb: eliminate kgdb_wait(), all cpus enter the same way Jason Wessel
2010-02-12 22:35 ` [PATCH 04/28] kgdb,sparc: Add in kgdb_arch_set_pc for sparc Jason Wessel
2010-02-12 22:35 ` [PATCH 05/28] kgdb,sh: update superh kgdb exception handling Jason Wessel
2010-02-12 22:35 ` [PATCH 06/28] kgdb,blackfin: Add in kgdb_arch_set_pc for blackfin Jason Wessel
2010-02-13 0:02 ` Mike Frysinger
2010-02-12 22:35 ` [PATCH 07/28] kdb: core for kgdb back end (1 of 2) Jason Wessel
2010-02-12 22:35 ` [PATCH 08/28] kdb: core for kgdb back end (2 " Jason Wessel
2010-02-18 5:00 ` Eric W. Biederman
2010-02-18 15:04 ` Jason Wessel
2010-02-18 16:35 ` Eric W. Biederman
2010-02-18 17:06 ` Jason Wessel
2010-02-18 19:08 ` Jason Wessel
2010-02-18 18:07 ` Scott Lurndal
2010-02-18 18:36 ` Jason Wessel
2010-02-12 22:35 ` [PATCH 09/28] kgdb: core changes to support kdb Jason Wessel
2010-02-12 22:35 ` [PATCH 10/28] kgdb,8250,pl011: Return immediately from console poll Jason Wessel
2010-02-12 22:35 ` [PATCH 11/28] sh,sh-sci: Use NO_POLL_CHAR in the SCIF polled console code Jason Wessel
2010-02-12 22:35 ` [PATCH 12/28] sparc,sunzilog: Add console polling support for sunzilog serial driver Jason Wessel
2010-02-12 22:35 ` [PATCH 13/28] kgdb: gdb "monitor" -> kdb passthrough Jason Wessel
2010-02-12 22:35 ` [PATCH 14/28] kgdboc,keyboard: Keyboard driver for kdb with kgdb Jason Wessel
2010-02-12 22:35 ` [PATCH 15/28] kgdb,docs: Update the kgdb docs to include kdb Jason Wessel
2010-02-13 19:42 ` Randy Dunlap
2010-02-17 18:58 ` Jason Wessel
2010-02-13 20:04 ` [Kgdb-bugreport] [PATCH 15/28] kgdb, docs: " Randy Dunlap
2010-02-17 21:00 ` Jason Wessel
2010-02-17 22:03 ` Randy Dunlap
2010-02-12 22:35 ` [PATCH 16/28] kgdb: remove post_primary_code references Jason Wessel
2010-02-12 22:35 ` [PATCH 17/28] x86,kgdb: Add low level debug hook Jason Wessel
2010-02-12 22:35 ` [PATCH 18/28] powerpc,kgdb: Introduce low level trap catching Jason Wessel
2010-02-14 23:29 ` Benjamin Herrenschmidt
2010-02-16 19:33 ` Jason Wessel
2010-02-16 22:56 ` Benjamin Herrenschmidt
2010-02-17 17:53 ` [Kgdb-bugreport] " Jason Wessel
2010-02-12 22:35 ` [PATCH 19/28] mips,kgdb: kdb low level trap catch and stack trace Jason Wessel
2010-02-25 14:01 ` Ralf Baechle
2010-02-12 22:35 ` [PATCH 20/28] kgdb: Add the ability to schedule a breakpoint via a tasklet Jason Wessel
2010-02-12 22:35 ` [PATCH 21/28] kgdboc,kdb: Allow kdb to work on a non open console port Jason Wessel
2010-02-12 22:35 ` [PATCH 22/28] printk,kdb: capture printk() when in kdb shell Jason Wessel
2010-02-12 22:54 ` Andrew Morton
2010-02-12 23:20 ` Jason Wessel
2010-02-13 4:39 ` Andrew Morton
2010-02-16 3:12 ` Jason Wessel [this message]
2010-02-12 22:35 ` [PATCH 23/28] keyboard, input: Add hook to input to allow low level event clear Jason Wessel
2010-02-12 22:35 ` [PATCH 24/28] debug_core,kdb: Allow the debug core to process a recursive debug entry Jason Wessel
2010-02-12 22:35 ` [PATCH 25/28] MAINTAINERS: update kgdb, kdb, and debug_core info Jason Wessel
2010-02-12 22:35 ` [PATCH 26/28] kdb,panic,debug_core: Allow the debug core to receive a panic before smp_send_stop() Jason Wessel
2010-02-12 23:00 ` Andrew Morton
2010-02-12 23:43 ` Jason Wessel
2010-02-13 4:41 ` Andrew Morton
2010-02-18 4:02 ` Eric W. Biederman
2010-02-18 21:39 ` Jason Wessel
2010-02-12 22:35 ` [PATCH 27/28] kgdbts,sh: Add in breakpoint pc offset for superh Jason Wessel
2010-02-12 22:35 ` [PATCH 28/28] debug_core: Turn off tracing while in the debugger Jason Wessel
-- strict thread matches above, loose matches on Subject: below --
2010-02-25 21:21 [GIT PULL] kdb / kms / early debug (1 of 2) Jason Wessel
2010-02-25 21:21 ` [PATCH 22/28] printk,kdb: capture printk() when in kdb shell Jason Wessel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B7A0D2D.2010806@windriver.com \
--to=jason.wessel@windriver.com \
--cc=akpm@linux-foundation.org \
--cc=kgdb-bugreport@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=randy.dunlap@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).