Replies: 1 comment 2 replies
-
I found the answer myself. In 2021 a change was introduced to the kernel source which better explains what CONFIG_NO_HZ_FULL is actually doing. It says:
With that said I believe linux-tkg should also default to |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The linux-tkg default setting for tickless kernel is
CONFIG_NO_HZ_IDLE=y
This is what you get when you hit RETURN through all the linux-tkg config questions and let the script pick the defaults.
This is also the recommendation of the kernel developers:
(from: https://docs.kernel.org/timers/no_hz.html)
But the main distros like arch, debian and fedora all have
CONFIG_NO_HZ_FULL=y
Any idea why they are doing that?
Beta Was this translation helpful? Give feedback.
All reactions