summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorMartin Hicks <mort@sgi.com>2010-05-23 08:24:29 -0500
committerJason Wessel <jason.wessel@windriver.com>2010-05-23 08:24:29 -0500
commit31fe4ee8d4dfa9966143c694059491653000595f (patch)
treee726a1ae0ffb9411b669ec0e2af0315e00bfc810 /kernel
parentf4b87dee923342505e1ddba8d34ce9de33e75050 (diff)
kdb: break out of kdb_ll() when command is terminated
Without this patch the "ll" linked-list traversal command won't terminate when you hit q/Q. Signed-off-by: Martin Hicks <mort@sgi.com> Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/debug/kdb/kdb_main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c
index b724c791b6d4..f231c947349a 100644
--- a/kernel/debug/kdb/kdb_main.c
+++ b/kernel/debug/kdb/kdb_main.c
@@ -2297,6 +2297,9 @@ static int kdb_ll(int argc, const char **argv)
while (va) {
char buf[80];
+ if (KDB_FLAG(CMD_INTERRUPT))
+ return 0;
+
sprintf(buf, "%s " kdb_machreg_fmt "\n", command, va);
diag = kdb_parse(buf);
if (diag)