sysrq_64.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright 2003 PathScale, Inc.
  3. *
  4. * Licensed under the GPL
  5. */
  6. #include <linux/kernel.h>
  7. #include <linux/module.h>
  8. #include <linux/sched.h>
  9. #include <linux/utsname.h>
  10. #include <asm/current.h>
  11. #include <asm/ptrace.h>
  12. #include <asm/sysrq.h>
  13. void show_regs(struct pt_regs *regs)
  14. {
  15. printk("\n");
  16. print_modules();
  17. printk(KERN_INFO "Pid: %d, comm: %.20s %s %s\n", task_pid_nr(current),
  18. current->comm, print_tainted(), init_utsname()->release);
  19. printk(KERN_INFO "RIP: %04lx:[<%016lx>]\n", PT_REGS_CS(regs) & 0xffff,
  20. PT_REGS_IP(regs));
  21. printk(KERN_INFO "RSP: %016lx EFLAGS: %08lx\n", PT_REGS_SP(regs),
  22. PT_REGS_EFLAGS(regs));
  23. printk(KERN_INFO "RAX: %016lx RBX: %016lx RCX: %016lx\n",
  24. PT_REGS_AX(regs), PT_REGS_BX(regs), PT_REGS_CX(regs));
  25. printk(KERN_INFO "RDX: %016lx RSI: %016lx RDI: %016lx\n",
  26. PT_REGS_DX(regs), PT_REGS_SI(regs), PT_REGS_DI(regs));
  27. printk(KERN_INFO "RBP: %016lx R08: %016lx R09: %016lx\n",
  28. PT_REGS_BP(regs), PT_REGS_R8(regs), PT_REGS_R9(regs));
  29. printk(KERN_INFO "R10: %016lx R11: %016lx R12: %016lx\n",
  30. PT_REGS_R10(regs), PT_REGS_R11(regs), PT_REGS_R12(regs));
  31. printk(KERN_INFO "R13: %016lx R14: %016lx R15: %016lx\n",
  32. PT_REGS_R13(regs), PT_REGS_R14(regs), PT_REGS_R15(regs));
  33. }