Created
January 9, 2019 07:26
-
-
Save tuergeist/340ab126a06d24d75965d9b0ec602635 to your computer and use it in GitHub Desktop.
kworker causes high load problem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# kworker has high load | |
# perf tools like `perf top` show acpi_ns_search_one_scope with high cpu | |
sudo perf record -g -a sleep 10 | |
sudo perf report | |
# find bad interrupts | |
grep . -r /sys/firmware/acpi/interrupts/ | |
# diasble bad interrupt | |
https://gist.github.com/StefanoBelli/0aab46b858a797c4eedb90e8799dffa2 | |
# further readning | |
https://askubuntu.com/questions/33640/kworker-what-is-it-and-why-is-it-hogging-so-much-cpu#421916 | |
https://www.thomas-krenn.com/de/wiki/Linux_Performance_Counters_mit_perf_und_perf-tools |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment