nmi_watchdog.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. Is your ix86 system locking up unpredictably? No keyboard activity, just
  2. a frustrating complete hard lockup? Do you want to help us debugging
  3. such lockups? If all yes then this document is definitely for you.
  4. On Intel and similar ix86 type hardware there is a feature that enables
  5. us to generate 'watchdog NMI interrupts'.  (NMI: Non Maskable Interrupt
  6. which get executed even if the system is otherwise locked up hard).
  7. This can be used to debug hard kernel lockups.  By executing periodic
  8. NMI interrupts, the kernel can monitor whether any CPU has locked up,
  9. and print out debugging messages if so.  You must enable the NMI
  10. watchdog at boot time with the 'nmi_watchdog=n' boot parameter.  Eg.
  11. the relevant lilo.conf entry:
  12.         append="nmi_watchdog=1"
  13. For SMP machines and UP machines with an IO-APIC use nmi_watchdog=1.
  14. For UP machines without an IO-APIC use nmi_watchdog=2, this only works
  15. for some processor types.  If in doubt, boot with nmi_watchdog=1 and
  16. check the NMI count in /proc/interrupts; if the count is zero then
  17. reboot with nmi_watchdog=2 and check the NMI count.  If it is still
  18. zero then log a problem, you probably have a processor that needs to be
  19. added to the nmi code.
  20. A 'lockup' is the following scenario: if any CPU in the system does not
  21. execute the period local timer interrupt for more than 5 seconds, then
  22. the NMI handler generates an oops and kills the process. This
  23. 'controlled crash' (and the resulting kernel messages) can be used to
  24. debug the lockup. Thus whenever the lockup happens, wait 5 seconds and
  25. the oops will show up automatically. If the kernel produces no messages
  26. then the system has crashed so hard (eg. hardware-wise) that either it
  27. cannot even accept NMI interrupts, or the crash has made the kernel
  28. unable to print messages.
  29. NOTE: starting with 2.4.2-ac18 the NMI-oopser is disabled by default,
  30. you have to enable it with a boot time parameter.  Prior to 2.4.2-ac18
  31. the NMI-oopser is enabled unconditionally on x86 SMP boxes.
  32. [ feel free to send bug reports, suggestions and patches to
  33.   Ingo Molnar <mingo@redhat.com> or the Linux SMP mailing
  34.   list at <linux-smp@vger.kernel.org> ]