diff options
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/debug/debug_core.c | 18 | ||||
| -rw-r--r-- | kernel/debug/kdb/kdb_bt.c | 2 | ||||
| -rw-r--r-- | kernel/debug/kdb/kdb_io.c | 33 | ||||
| -rw-r--r-- | kernel/debug/kdb/kdb_main.c | 2 |
4 files changed, 50 insertions, 5 deletions
diff --git a/kernel/debug/debug_core.c b/kernel/debug/debug_core.c index 17e073c309e6..9a61738cefc8 100644 --- a/kernel/debug/debug_core.c +++ b/kernel/debug/debug_core.c | |||
| @@ -696,6 +696,22 @@ out: | |||
| 696 | return ret; | 696 | return ret; |
| 697 | } | 697 | } |
| 698 | 698 | ||
| 699 | /* | ||
| 700 | * GDB places a breakpoint at this function to know dynamically | ||
| 701 | * loaded objects. It's not defined static so that only one instance with this | ||
| 702 | * name exists in the kernel. | ||
| 703 | */ | ||
| 704 | |||
| 705 | static int module_event(struct notifier_block *self, unsigned long val, | ||
| 706 | void *data) | ||
| 707 | { | ||
| 708 | return 0; | ||
| 709 | } | ||
| 710 | |||
| 711 | static struct notifier_block dbg_module_load_nb = { | ||
| 712 | .notifier_call = module_event, | ||
| 713 | }; | ||
| 714 | |||
| 699 | int kgdb_nmicallback(int cpu, void *regs) | 715 | int kgdb_nmicallback(int cpu, void *regs) |
| 700 | { | 716 | { |
| 701 | #ifdef CONFIG_SMP | 717 | #ifdef CONFIG_SMP |
| @@ -824,6 +840,7 @@ static void kgdb_register_callbacks(void) | |||
| 824 | kgdb_arch_init(); | 840 | kgdb_arch_init(); |
| 825 | if (!dbg_is_early) | 841 | if (!dbg_is_early) |
| 826 | kgdb_arch_late(); | 842 | kgdb_arch_late(); |
| 843 | register_module_notifier(&dbg_module_load_nb); | ||
| 827 | register_reboot_notifier(&dbg_reboot_notifier); | 844 | register_reboot_notifier(&dbg_reboot_notifier); |
| 828 | atomic_notifier_chain_register(&panic_notifier_list, | 845 | atomic_notifier_chain_register(&panic_notifier_list, |
| 829 | &kgdb_panic_event_nb); | 846 | &kgdb_panic_event_nb); |
| @@ -847,6 +864,7 @@ static void kgdb_unregister_callbacks(void) | |||
| 847 | if (kgdb_io_module_registered) { | 864 | if (kgdb_io_module_registered) { |
| 848 | kgdb_io_module_registered = 0; | 865 | kgdb_io_module_registered = 0; |
| 849 | unregister_reboot_notifier(&dbg_reboot_notifier); | 866 | unregister_reboot_notifier(&dbg_reboot_notifier); |
| 867 | unregister_module_notifier(&dbg_module_load_nb); | ||
| 850 | atomic_notifier_chain_unregister(&panic_notifier_list, | 868 | atomic_notifier_chain_unregister(&panic_notifier_list, |
| 851 | &kgdb_panic_event_nb); | 869 | &kgdb_panic_event_nb); |
| 852 | kgdb_arch_exit(); | 870 | kgdb_arch_exit(); |
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_io.c b/kernel/debug/kdb/kdb_io.c index 0a69d2adc4f3..14ff4849262c 100644 --- a/kernel/debug/kdb/kdb_io.c +++ b/kernel/debug/kdb/kdb_io.c | |||
| @@ -552,6 +552,7 @@ int vkdb_printf(const char *fmt, va_list ap) | |||
| 552 | { | 552 | { |
| 553 | int diag; | 553 | int diag; |
| 554 | int linecount; | 554 | int linecount; |
| 555 | int colcount; | ||
| 555 | int logging, saved_loglevel = 0; | 556 | int logging, saved_loglevel = 0; |
| 556 | int saved_trap_printk; | 557 | int saved_trap_printk; |
| 557 | int got_printf_lock = 0; | 558 | int got_printf_lock = 0; |
| @@ -584,6 +585,10 @@ int vkdb_printf(const char *fmt, va_list ap) | |||
| 584 | if (diag || linecount <= 1) | 585 | if (diag || linecount <= 1) |
| 585 | linecount = 24; | 586 | linecount = 24; |
| 586 | 587 | ||
| 588 | diag = kdbgetintenv("COLUMNS", &colcount); | ||
| 589 | if (diag || colcount <= 1) | ||
| 590 | colcount = 80; | ||
| 591 | |||
| 587 | diag = kdbgetintenv("LOGGING", &logging); | 592 | diag = kdbgetintenv("LOGGING", &logging); |
| 588 | if (diag) | 593 | if (diag) |
| 589 | logging = 0; | 594 | logging = 0; |
| @@ -690,7 +695,7 @@ kdb_printit: | |||
| 690 | gdbstub_msg_write(kdb_buffer, retlen); | 695 | gdbstub_msg_write(kdb_buffer, retlen); |
| 691 | } else { | 696 | } else { |
| 692 | if (dbg_io_ops && !dbg_io_ops->is_console) { | 697 | if (dbg_io_ops && !dbg_io_ops->is_console) { |
| 693 | len = strlen(kdb_buffer); | 698 | len = retlen; |
| 694 | cp = kdb_buffer; | 699 | cp = kdb_buffer; |
| 695 | while (len--) { | 700 | while (len--) { |
| 696 | dbg_io_ops->write_char(*cp); | 701 | dbg_io_ops->write_char(*cp); |
| @@ -709,11 +714,29 @@ kdb_printit: | |||
| 709 | printk(KERN_INFO "%s", kdb_buffer); | 714 | printk(KERN_INFO "%s", kdb_buffer); |
| 710 | } | 715 | } |
| 711 | 716 | ||
| 712 | if (KDB_STATE(PAGER) && strchr(kdb_buffer, '\n')) | 717 | if (KDB_STATE(PAGER)) { |
| 713 | kdb_nextline++; | 718 | /* |
| 719 | * Check printed string to decide how to bump the | ||
| 720 | * kdb_nextline to control when the more prompt should | ||
| 721 | * show up. | ||
| 722 | */ | ||
| 723 | int got = 0; | ||
| 724 | len = retlen; | ||
| 725 | while (len--) { | ||
| 726 | if (kdb_buffer[len] == '\n') { | ||
| 727 | kdb_nextline++; | ||
| 728 | got = 0; | ||
| 729 | } else if (kdb_buffer[len] == '\r') { | ||
| 730 | got = 0; | ||
| 731 | } else { | ||
| 732 | got++; | ||
| 733 | } | ||
| 734 | } | ||
| 735 | kdb_nextline += got / (colcount + 1); | ||
| 736 | } | ||
| 714 | 737 | ||
| 715 | /* check for having reached the LINES number of printed lines */ | 738 | /* check for having reached the LINES number of printed lines */ |
| 716 | if (kdb_nextline == linecount) { | 739 | if (kdb_nextline >= linecount) { |
| 717 | char buf1[16] = ""; | 740 | char buf1[16] = ""; |
| 718 | 741 | ||
| 719 | /* Watch out for recursion here. Any routine that calls | 742 | /* Watch out for recursion here. Any routine that calls |
| @@ -765,7 +788,7 @@ kdb_printit: | |||
| 765 | kdb_grepping_flag = 0; | 788 | kdb_grepping_flag = 0; |
| 766 | kdb_printf("\n"); | 789 | kdb_printf("\n"); |
| 767 | } else if (buf1[0] == ' ') { | 790 | } else if (buf1[0] == ' ') { |
| 768 | kdb_printf("\n"); | 791 | kdb_printf("\r"); |
| 769 | suspend_grep = 1; /* for this recursion */ | 792 | suspend_grep = 1; /* for this recursion */ |
| 770 | } else if (buf1[0] == '\n') { | 793 | } else if (buf1[0] == '\n') { |
| 771 | kdb_nextline = linecount - 1; | 794 | kdb_nextline = linecount - 1; |
diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c index 1261dc7eaeb9..4d5f8d5612f3 100644 --- a/kernel/debug/kdb/kdb_main.c +++ b/kernel/debug/kdb/kdb_main.c | |||
| @@ -2101,6 +2101,8 @@ static int kdb_dmesg(int argc, const char **argv) | |||
| 2101 | } | 2101 | } |
| 2102 | if (!lines--) | 2102 | if (!lines--) |
| 2103 | break; | 2103 | break; |
| 2104 | if (KDB_FLAG(CMD_INTERRUPT)) | ||
| 2105 | return 0; | ||
| 2104 | 2106 | ||
| 2105 | kdb_printf("%.*s\n", (int)len - 1, buf); | 2107 | kdb_printf("%.*s\n", (int)len - 1, buf); |
| 2106 | } | 2108 | } |
