sysrq.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  3. * Licensed under the GPL
  4. */
  5. #include <linux/kallsyms.h>
  6. #include <linux/kernel.h>
  7. #include <linux/module.h>
  8. #include <linux/sched.h>
  9. #include "sysrq.h"
  10. /* Catch non-i386 SUBARCH's. */
  11. #if !defined(CONFIG_UML_X86) || defined(CONFIG_64BIT)
  12. void show_trace(struct task_struct *task, unsigned long * stack)
  13. {
  14. unsigned long addr;
  15. if (!stack) {
  16. stack = (unsigned long*) &stack;
  17. WARN_ON(1);
  18. }
  19. printk(KERN_INFO "Call Trace: \n");
  20. while (((long) stack & (THREAD_SIZE-1)) != 0) {
  21. addr = *stack;
  22. if (__kernel_text_address(addr)) {
  23. printk(KERN_INFO "%08lx: [<%08lx>]",
  24. (unsigned long) stack, addr);
  25. print_symbol(KERN_CONT " %s", addr);
  26. printk(KERN_CONT "\n");
  27. }
  28. stack++;
  29. }
  30. printk(KERN_INFO "\n");
  31. }
  32. #endif
  33. /*
  34. * stack dumps generator - this is used by arch-independent code.
  35. * And this is identical to i386 currently.
  36. */
  37. void dump_stack(void)
  38. {
  39. unsigned long stack;
  40. show_trace(current, &stack);
  41. }
  42. EXPORT_SYMBOL(dump_stack);
  43. /*Stolen from arch/i386/kernel/traps.c */
  44. static const int kstack_depth_to_print = 24;
  45. /* This recently started being used in arch-independent code too, as in
  46. * kernel/sched.c.*/
  47. void show_stack(struct task_struct *task, unsigned long *esp)
  48. {
  49. unsigned long *stack;
  50. int i;
  51. if (esp == NULL) {
  52. if (task != current && task != NULL) {
  53. esp = (unsigned long *) KSTK_ESP(task);
  54. } else {
  55. esp = (unsigned long *) &esp;
  56. }
  57. }
  58. stack = esp;
  59. for (i = 0; i < kstack_depth_to_print; i++) {
  60. if (kstack_end(stack))
  61. break;
  62. if (i && ((i % 8) == 0))
  63. printk(KERN_INFO " ");
  64. printk(KERN_CONT "%08lx ", *stack++);
  65. }
  66. show_trace(task, esp);
  67. }