KGDB/KDB/usb-dbgp fixes and cleanups
usb-dbgp - increase the controller wait time to come out of halt. kdb - Remove unused KDB_FLAG_ONLY_DO_DUMP code and cpu in more prompt debug core - pass NMI type on archs that provide NMI types -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJQG8wyAAoJEIciOldedpOjN2oP/ipaQSLnvoKUhutFl/qL2239 mMsxh9ga9rfKuCujpSkHZUwjo3VX7put7cnhVwETd4y2gN2YWPYg4OIKt+Y0AhNe 4NzHwB+lm6iGE33Q1x4uEHBH5aWLzWcOM/9n4avwY2DjtDfpecki5ChP/CVHK8qU VVF2PfY8nbxcEonCbP1b/0KaD3xrPqwgZ70HdFi5eUuXiBajAyp9c9zqVUWJ6j+H r+2PVkzn9NxRCkyq3tzK5gYk5SzoJPClkpB67CWugG35MiFLkz2csJNztFxtaInZ t8HLkMTVLdCgLZqnw/ZEVWfqQA+q6N5NS6zs9j0siLg5HbEb+UtCebPwpChdQrmh Sol+0vmT9Hi4Jm6onhDnQYchaDI7gMhynUC9sWAPhtSHS9e7D9c5IBLHQd3YbOHK c8ELzxduszw8+jaiDJStkWM+tbQzJXD9bT1KpLVJd8t9BKAmuBX7ETSD+eKtjynJ SgywSfVOdxXzEMvRWqeK3qgkLJYCWCfFsc+75hzJl18dRoM3NDyuOxKyOLWF9tFV QUjaCvndIFz7CgM7FTToJZbACqxFHRGh4UUXHiXPUBPXvE5Zt34n4VsxAXYpJc95 1by/TBcYKWPd3hsOJOh1qMeKXD6TEwN/eEmsjBfnHTp8EBcgRtvue8ZHPMcfYnn/ Iauy66b/nHJLRsi1gWrn =LAWq -----END PGP SIGNATURE----- Merge tag 'for_linux-3.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb Pull KGDB/KDB/usb-dbgp fixes and cleanups from Jason Wessel: "There are no new features, those will be delayed to the 3.7 window. There are only fixes/cleanup against the usual kernel churn and we are removing more lines than we add: - usb-dbgp - increase the controller wait time to come out of halt. - kdb - Remove unused KDB_FLAG_ONLY_DO_DUMP code and cpu in more prompt - debug core - pass NMI type on archs that provide NMI types" * tag 'for_linux-3.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb: USB: echi-dbgp: increase the controller wait time to come out of halt. kernel/debug: Make use of KGDB_REASON_NMI kdb: Remove cpu from the more prompt kdb: Remove unused KDB_FLAG_ONLY_DO_DUMP
This commit is contained in:
commit
d97e1dcde5
5 changed files with 6 additions and 28 deletions
|
@ -450,7 +450,7 @@ static int dbgp_ehci_startup(void)
|
|||
writel(FLAG_CF, &ehci_regs->configured_flag);
|
||||
|
||||
/* Wait until the controller is no longer halted */
|
||||
loop = 10;
|
||||
loop = 1000;
|
||||
do {
|
||||
status = readl(&ehci_regs->status);
|
||||
if (!(status & STS_HALT))
|
||||
|
|
|
@ -75,8 +75,6 @@ extern const char *kdb_diemsg;
|
|||
#define KDB_FLAG_CATASTROPHIC (1 << 1) /* A catastrophic event has occurred */
|
||||
#define KDB_FLAG_CMD_INTERRUPT (1 << 2) /* Previous command was interrupted */
|
||||
#define KDB_FLAG_NOIPI (1 << 3) /* Do not send IPIs */
|
||||
#define KDB_FLAG_ONLY_DO_DUMP (1 << 4) /* Only do a dump, used when
|
||||
* kdb is off */
|
||||
#define KDB_FLAG_NO_CONSOLE (1 << 5) /* No console is available,
|
||||
* kdb is disabled */
|
||||
#define KDB_FLAG_NO_VT_CONSOLE (1 << 6) /* No VT console is available, do
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
#include <linux/kdb.h>
|
||||
#include <linux/kdebug.h>
|
||||
#include <linux/export.h>
|
||||
#include <linux/hardirq.h>
|
||||
#include "kdb_private.h"
|
||||
#include "../debug_core.h"
|
||||
|
||||
|
@ -52,6 +53,9 @@ int kdb_stub(struct kgdb_state *ks)
|
|||
if (atomic_read(&kgdb_setting_breakpoint))
|
||||
reason = KDB_REASON_KEYBOARD;
|
||||
|
||||
if (in_nmi())
|
||||
reason = KDB_REASON_NMI;
|
||||
|
||||
for (i = 0, bp = kdb_breakpoints; i < KDB_MAXBPT; i++, bp++) {
|
||||
if ((bp->bp_enabled) && (bp->bp_addr == addr)) {
|
||||
reason = KDB_REASON_BREAK;
|
||||
|
|
|
@ -715,9 +715,6 @@ int vkdb_printf(const char *fmt, va_list ap)
|
|||
/* check for having reached the LINES number of printed lines */
|
||||
if (kdb_nextline == linecount) {
|
||||
char buf1[16] = "";
|
||||
#if defined(CONFIG_SMP)
|
||||
char buf2[32];
|
||||
#endif
|
||||
|
||||
/* Watch out for recursion here. Any routine that calls
|
||||
* kdb_printf will come back through here. And kdb_read
|
||||
|
@ -732,14 +729,6 @@ int vkdb_printf(const char *fmt, va_list ap)
|
|||
if (moreprompt == NULL)
|
||||
moreprompt = "more> ";
|
||||
|
||||
#if defined(CONFIG_SMP)
|
||||
if (strchr(moreprompt, '%')) {
|
||||
sprintf(buf2, moreprompt, get_cpu());
|
||||
put_cpu();
|
||||
moreprompt = buf2;
|
||||
}
|
||||
#endif
|
||||
|
||||
kdb_input_flush();
|
||||
c = console_drivers;
|
||||
|
||||
|
|
|
@ -139,11 +139,10 @@ static const int __nkdb_err = sizeof(kdbmsgs) / sizeof(kdbmsg_t);
|
|||
static char *__env[] = {
|
||||
#if defined(CONFIG_SMP)
|
||||
"PROMPT=[%d]kdb> ",
|
||||
"MOREPROMPT=[%d]more> ",
|
||||
#else
|
||||
"PROMPT=kdb> ",
|
||||
"MOREPROMPT=more> ",
|
||||
#endif
|
||||
"MOREPROMPT=more> ",
|
||||
"RADIX=16",
|
||||
"MDCOUNT=8", /* lines of md output */
|
||||
KDB_PLATFORM_ENV,
|
||||
|
@ -1236,18 +1235,6 @@ static int kdb_local(kdb_reason_t reason, int error, struct pt_regs *regs,
|
|||
*cmdbuf = '\0';
|
||||
*(cmd_hist[cmd_head]) = '\0';
|
||||
|
||||
if (KDB_FLAG(ONLY_DO_DUMP)) {
|
||||
/* kdb is off but a catastrophic error requires a dump.
|
||||
* Take the dump and reboot.
|
||||
* Turn on logging so the kdb output appears in the log
|
||||
* buffer in the dump.
|
||||
*/
|
||||
const char *setargs[] = { "set", "LOGGING", "1" };
|
||||
kdb_set(2, setargs);
|
||||
kdb_reboot(0, NULL);
|
||||
/*NOTREACHED*/
|
||||
}
|
||||
|
||||
do_full_getstr:
|
||||
#if defined(CONFIG_SMP)
|
||||
snprintf(kdb_prompt_str, CMD_BUFLEN, kdbgetenv("PROMPT"),
|
||||
|
|
Loading…
Reference in a new issue