~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/translations/zh_CN/admin-guide/lockup-watchdogs.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 .. include:: ../disclaimer-zh_CN.rst
  2 
  3 :Original: Documentation/admin-guide/lockup-watchdogs.rst
  4 :Translator: Hailong Liu <liu.hailong6@zte.com.cn>
  5 
  6 .. _cn_lockup-watchdogs:
  7 
  8 
  9 =================================================
 10 Softlockup与hardlockup检测机制(又名:nmi_watchdog)
 11 =================================================
 12 
 13 Linux中内核实现了一种用以检测系统发生softlockup和hardlockup的看门狗机制。
 14 
 15 Softlockup是一种会引发系统在内核态中一直循环超过20秒(详见下面“实现”小节)导致
 16 其他任务没有机会得到运行的BUG。一旦检测到'softlockup'发生,默认情况下系统会打
 17 印当前堆栈跟踪信息并进入锁定状态。也可配置使其在检测到'softlockup'后进入panic
 18 状态;通过sysctl命令设置“kernel.softlockup_panic”、使用内核启动参数
 19 “softlockup_panic”(详见Documentation/admin-guide/kernel-parameters.rst)以及使
 20 能内核编译选项“BOOTPARAM_SOFTLOCKUP_PANIC”都可实现这种配置。
 21 
 22 而'hardlockup'是一种会引发系统在内核态一直循环超过10秒钟(详见"实现"小节)导致其
 23 他中断没有机会运行的缺陷。与'softlockup'情况类似,除了使用sysctl命令设置
 24 'hardlockup_panic'、使能内核选项“BOOTPARAM_HARDLOCKUP_PANIC”以及使用内核参数
 25 "nmi_watchdog"(详见:”Documentation/admin-guide/kernel-parameters.rst“)外,一旦检
 26 测到'hardlockup'默认情况下系统打印当前堆栈跟踪信息,然后进入锁定状态。
 27 
 28 这个panic选项也可以与panic_timeout结合使用(这个panic_timeout是通过稍具迷惑性的
 29 sysctl命令"kernel.panic"来设置),使系统在panic指定时间后自动重启。
 30 
 31 实现
 32 ====
 33 
 34 Softlockup和hardlockup分别建立在hrtimer(高精度定时器)和perf两个子系统上而实现。
 35 这也就意味着理论上任何架构只要实现了这两个子系统就支持这两种检测机制。
 36 
 37 Hrtimer用于周期性产生中断并唤醒watchdog线程;NMI perf事件则以”watchdog_thresh“
 38 (编译时默认初始化为10秒,也可通过”watchdog_thresh“这个sysctl接口来进行配置修改)
 39 为间隔周期产生以检测 hardlockups。如果一个CPU在这个时间段内没有检测到hrtimer中
 40 断发生,'hardlockup 检测器'(即NMI perf事件处理函数)将会视系统配置而选择产生内核
 41 警告或者直接panic。
 42 
 43 而watchdog线程本质上是一个高优先级内核线程,每调度一次就对时间戳进行一次更新。
 44 如果时间戳在2*watchdog_thresh(这个是softlockup的触发门限)这段时间都未更新,那么
 45 "softlocup 检测器"(内部hrtimer定时器回调函数)会将相关的调试信息打印到系统日志中,
 46 然后如果系统配置了进入panic流程则进入panic,否则内核继续执行。
 47 
 48 Hrtimer定时器的周期是2*watchdog_thresh/5,也就是说在hardlockup被触发前hrtimer有
 49 2~3次机会产生时钟中断。
 50 
 51 如上所述,内核相当于为系统管理员提供了一个可调节hrtimer定时器和perf事件周期长度
 52 的调节旋钮。如何通过这个旋钮为特定使用场景配置一个合理的周期值要对lockups检测的
 53 响应速度和lockups检测开销这二者之间进行权衡。
 54 
 55 默认情况下所有在线cpu上都会运行一个watchdog线程。不过在内核配置了”NO_HZ_FULL“的
 56 情况下watchdog线程默认只会运行在管家(housekeeping)cpu上,而”nohz_full“启动参数指
 57 定的cpu上则不会有watchdog线程运行。试想,如果我们允许watchdog线程在”nohz_full“指
 58 定的cpu上运行,这些cpu上必须得运行时钟定时器来激发watchdog线程调度;这样一来就会
 59 使”nohz_full“保护用户程序免受内核干扰的功能失效。当然,副作用就是”nohz_full“指定
 60 的cpu即使在内核产生了lockup问题我们也无法检测到。不过,至少我们可以允许watchdog
 61 线程在管家(non-tickless)核上继续运行以便我们能继续正常的监测这些cpus上的lockups
 62 事件。
 63 
 64 不论哪种情况都可以通过sysctl命令kernel.watchdog_cpumask来对没有运行watchdog线程
 65 的cpu集合进行调节。对于nohz_full而言,如果nohz_full cpu上有异常挂住的情况,通过
 66 这种方式打开这些cpu上的watchdog进行调试可能会有所作用。

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php