summaryrefslogtreecommitdiff
path: root/kernel/time
diff options
context:
space:
mode:
authorJulian Braha <julianbraha@gmail.com>2026-08-01 17:01:40 +0100
committerThomas Gleixner <tglx@kernel.org>2026-08-11 15:37:23 +0200
commitb17006b45283f012a6e166517f5ca3e1af2f806a (patch)
treea038525f6fa84dd99a719b23120103ba1d7aadeb /kernel/time
parent2838bdb772e4e94591a90437bf595dba485a3162 (diff)
downloadlinux-next-b17006b45283f012a6e166517f5ca3e1af2f806a.tar.gz
linux-next-b17006b45283f012a6e166517f5ca3e1af2f806a.zip
nohz: Replace dead select with choice default
'select' does not work on config options in a 'choice', so currently the 'select VIRT_CPU_ACCOUNTING_GEN' for NO_HZ_FULL is dead, with the choice option VIRT_CPU_ACCOUNTING_GEN only being enabled when NO_HZ_FULL=y because the other choice members depend on NO_HZ_FULL=n. Remove the dead select, and encode this relationship as a default of the choice, instead. This dead select was found by kconfirm, a static analysis tool for Kconfig. Signed-off-by: Julian Braha <julianbraha@gmail.com> Signed-off-by: Thomas Gleixner <tglx@kernel.org> Reviewed-by: Bradley Morgan <include@grrlz.net> Reviewed-by: Nicolas Schier <nsc@kernel.org> Link: https://patch.msgid.link/20260801160140.2391000-1-julianbraha@gmail.com
Diffstat (limited to 'kernel/time')
-rw-r--r--kernel/time/Kconfig1
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/time/Kconfig b/kernel/time/Kconfig
index d098ac39bde4..ddfb6bee0745 100644
--- a/kernel/time/Kconfig
+++ b/kernel/time/Kconfig
@@ -133,7 +133,6 @@ config NO_HZ_FULL
depends on HAVE_VIRT_CPU_ACCOUNTING_GEN
select NO_HZ_COMMON
select RCU_NOCB_CPU
- select VIRT_CPU_ACCOUNTING_GEN
select IRQ_WORK
select CPU_ISOLATION
help