diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2012-08-26 22:43:12 -0400 |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2012-10-12 07:37:35 -0400 |
commit | d1871b38fccdc4b6575b0cabdea9e06bc70167eb (patch) | |
tree | b750732307696a074df2d71be6b034ba96557d8b /kernel/debug | |
parent | 24b8592ec021c433e73e6d8000e71f5c341fdde0 (diff) |
kdb: Fix dmesg/bta scroll to quit with 'q'
If you press 'q' the pager should exit instead of printing everything
from dmesg which can really bog down a 9600 baud serial link.
The same is true for the bta command.
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Diffstat (limited to 'kernel/debug')
-rw-r--r-- | kernel/debug/kdb/kdb_bt.c | 2 | ||||
-rw-r--r-- | kernel/debug/kdb/kdb_main.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/kernel/debug/kdb/kdb_bt.c b/kernel/debug/kdb/kdb_bt.c index 07c9bbb94a0b..b03e0e814e43 100644 --- a/kernel/debug/kdb/kdb_bt.c +++ b/kernel/debug/kdb/kdb_bt.c | |||
@@ -129,6 +129,8 @@ kdb_bt(int argc, const char **argv) | |||
129 | } | 129 | } |
130 | /* Now the inactive tasks */ | 130 | /* Now the inactive tasks */ |
131 | kdb_do_each_thread(g, p) { | 131 | kdb_do_each_thread(g, p) { |
132 | if (KDB_FLAG(CMD_INTERRUPT)) | ||
133 | return 0; | ||
132 | if (task_curr(p)) | 134 | if (task_curr(p)) |
133 | continue; | 135 | continue; |
134 | if (kdb_bt1(p, mask, argcount, btaprompt)) | 136 | if (kdb_bt1(p, mask, argcount, btaprompt)) |
diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c index 31df1706b9a9..1afeb5c1e5a9 100644 --- a/kernel/debug/kdb/kdb_main.c +++ b/kernel/debug/kdb/kdb_main.c | |||
@@ -2100,6 +2100,8 @@ static int kdb_dmesg(int argc, const char **argv) | |||
2100 | } | 2100 | } |
2101 | if (!lines--) | 2101 | if (!lines--) |
2102 | break; | 2102 | break; |
2103 | if (KDB_FLAG(CMD_INTERRUPT)) | ||
2104 | return 0; | ||
2103 | 2105 | ||
2104 | kdb_printf("%.*s\n", (int)len - 1, buf); | 2106 | kdb_printf("%.*s\n", (int)len - 1, buf); |
2105 | } | 2107 | } |