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

TOMOYO Linux Cross Reference
Linux/Documentation/translations/zh_TW/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 ] ~

Diff markup

Differences between /Documentation/translations/zh_TW/admin-guide/lockup-watchdogs.rst (Version linux-6.12-rc7) and /Documentation/translations/zh_TW/admin-guide/lockup-watchdogs.rst (Version linux-6.9.12)


  1 .. include:: ../disclaimer-zh_TW.rst                1 .. include:: ../disclaimer-zh_TW.rst
  2                                                     2 
  3 :Original: Documentation/admin-guide/lockup-wa      3 :Original: Documentation/admin-guide/lockup-watchdogs.rst
  4 :Translator: Hailong Liu <liu.hailong6@zte.com.      4 :Translator: Hailong Liu <liu.hailong6@zte.com.cn>
  5                                                     5 
  6 .. _tw_lockup-watchdogs:                            6 .. _tw_lockup-watchdogs:
  7                                                     7 
  8                                                     8 
  9 ==============================================      9 =================================================
 10 Softlockup與hardlockup檢測機制(又名:nmi     10 Softlockup與hardlockup檢測機制(又名:nmi_watchdog)
 11 ==============================================     11 =================================================
 12                                                    12 
 13 Linux中內核實現了一種用以檢測系     13 Linux中內核實現了一種用以檢測系統發生softlockup和hardlockup的看門狗機制。
 14                                                    14 
 15 Softlockup是一種會引發系統在內核態     15 Softlockup是一種會引發系統在內核態中一直循環超過20秒(詳見下面“實現”小節)導致
 16 其他任務沒有機會得到運行的BUG。     16 其他任務沒有機會得到運行的BUG。一旦檢測到'softlockup'發生,默認情況下系統會打
 17 印當前堆棧跟蹤信息並進入鎖定狀     17 印當前堆棧跟蹤信息並進入鎖定狀態。也可配置使其在檢測到'softlockup'後進入panic
 18 狀態;通過sysctl命令設置“kernel.sof     18 狀態;通過sysctl命令設置“kernel.softlockup_panic”、使用內核啓動參數
 19 “softlockup_panic”(詳見Documentation/a     19 “softlockup_panic”(詳見Documentation/admin-guide/kernel-parameters.rst)以及使
 20 能內核編譯選項“BOOTPARAM_SOFTLOCKUP_P     20 能內核編譯選項“BOOTPARAM_SOFTLOCKUP_PANIC”都可實現這種配置。
 21                                                    21 
 22 而'hardlockup'是一種會引發系統在內     22 而'hardlockup'是一種會引發系統在內核態一直循環超過10秒鐘(詳見"實現"小節)導致其
 23 他中斷沒有機會運行的缺陷。與'sof     23 他中斷沒有機會運行的缺陷。與'softlockup'情況類似,除了使用sysctl命令設置
 24 'hardlockup_panic'、使能內核選項“BOOT     24 'hardlockup_panic'、使能內核選項“BOOTPARAM_HARDLOCKUP_PANIC”以及使用內核參數
 25 "nmi_watchdog"(詳見:”Documentation/admin-g     25 "nmi_watchdog"(詳見:”Documentation/admin-guide/kernel-parameters.rst“)外,一旦檢
 26 測到'hardlockup'默認情況下系統打印     26 測到'hardlockup'默認情況下系統打印當前堆棧跟蹤信息,然後進入鎖定狀態。
 27                                                    27 
 28 這個panic選項也可以與panic_timeout結     28 這個panic選項也可以與panic_timeout結合使用(這個panic_timeout是通過稍具迷惑性的
 29 sysctl命令"kernel.panic"來設置),使     29 sysctl命令"kernel.panic"來設置),使系統在panic指定時間後自動重啓。
 30                                                    30 
 31 實現                                             31 實現
 32 ====                                               32 ====
 33                                                    33 
 34 Softlockup和hardlockup分別建立在hrtimer(     34 Softlockup和hardlockup分別建立在hrtimer(高精度定時器)和perf兩個子系統上而實現。
 35 這也就意味着理論上任何架構只要     35 這也就意味着理論上任何架構只要實現了這兩個子系統就支持這兩種檢測機制。
 36                                                    36 
 37 Hrtimer用於週期性產生中斷並喚醒wat     37 Hrtimer用於週期性產生中斷並喚醒watchdog線程;NMI perf事件則以”watchdog_thresh“
 38 (編譯時默認初始化爲10秒,也可通     38 (編譯時默認初始化爲10秒,也可通過”watchdog_thresh“這個sysctl接口來進行配置修改)
 39 爲間隔週期產生以檢測 hardlockups。     39 爲間隔週期產生以檢測 hardlockups。如果一個CPU在這個時間段內沒有檢測到hrtimer中
 40 斷髮生,'hardlockup 檢測器'(即NMI perf     40 斷髮生,'hardlockup 檢測器'(即NMI perf事件處理函數)將會視系統配置而選擇產生內核
 41 警告或者直接panic。                         41 警告或者直接panic。
 42                                                    42 
 43 而watchdog線程本質上是一個高優先     43 而watchdog線程本質上是一個高優先級內核線程,每調度一次就對時間戳進行一次更新。
 44 如果時間戳在2*watchdog_thresh(這個是s     44 如果時間戳在2*watchdog_thresh(這個是softlockup的觸發門限)這段時間都未更新,那麼
 45 "softlocup 檢測器"(內部hrtimer定時器     45 "softlocup 檢測器"(內部hrtimer定時器回調函數)會將相關的調試信息打印到系統日誌中,
 46 然後如果系統配置了進入panic流程     46 然後如果系統配置了進入panic流程則進入panic,否則內核繼續執行。
 47                                                    47 
 48 Hrtimer定時器的週期是2*watchdog_thresh/     48 Hrtimer定時器的週期是2*watchdog_thresh/5,也就是說在hardlockup被觸發前hrtimer有
 49 2~3次機會產生時鐘中斷。                  49 2~3次機會產生時鐘中斷。
 50                                                    50 
 51 如上所述,內核相當於爲系統管理員     51 如上所述,內核相當於爲系統管理員提供了一個可調節hrtimer定時器和perf事件週期長度
 52 的調節旋鈕。如何通過這個旋鈕爲     52 的調節旋鈕。如何通過這個旋鈕爲特定使用場景配置一個合理的週期值要對lockups檢測的
 53 響應速度和lockups檢測開銷這二者之     53 響應速度和lockups檢測開銷這二者之間進行權衡。
 54                                                    54 
 55 默認情況下所有在線cpu上都會運行     55 默認情況下所有在線cpu上都會運行一個watchdog線程。不過在內核配置了”NO_HZ_FULL“的
 56 情況下watchdog線程默認只會運行在     56 情況下watchdog線程默認只會運行在管家(housekeeping)cpu上,而”nohz_full“啓動參數指
 57 定的cpu上則不會有watchdog線程運行     57 定的cpu上則不會有watchdog線程運行。試想,如果我們允許watchdog線程在”nohz_full“指
 58 定的cpu上運行,這些cpu上必須得運     58 定的cpu上運行,這些cpu上必須得運行時鐘定時器來激發watchdog線程調度;這樣一來就會
 59 使”nohz_full“保護用戶程序免受內     59 使”nohz_full“保護用戶程序免受內核干擾的功能失效。當然,副作用就是”nohz_full“指定
 60 的cpu即使在內核產生了lockup問題我     60 的cpu即使在內核產生了lockup問題我們也無法檢測到。不過,至少我們可以允許watchdog
 61 線程在管家(non-tickless)核上繼續運     61 線程在管家(non-tickless)核上繼續運行以便我們能繼續正常的監測這些cpus上的lockups
 62 事件。                                          62 事件。
 63                                                    63 
 64 不論哪種情況都可以通過sysctl命令k     64 不論哪種情況都可以通過sysctl命令kernel.watchdog_cpumask來對沒有運行watchdog線程
 65 的cpu集合進行調節。對於nohz_full而     65 的cpu集合進行調節。對於nohz_full而言,如果nohz_full cpu上有異常掛住的情況,通過
 66 這種方式打開這些cpu上的watchdog進     66 這種方式打開這些cpu上的watchdog進行調試可能會有所作用。
 67                                                    67 
                                                      

~ [ 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