From 056fe1941a435e77c13cfd86d247bd53d96cb22d Mon Sep 17 00:00:00 2001 From: Liu Xinpeng Date: Tue, 30 Jan 2024 07:56:26 +0000 Subject: [PATCH] ck: fix build error when CONFIG_RICH_CONTAINER=y and CONFIG_SCHEDSTATS=n If enable the rich container, the schedstats should be enabled. Signed-off-by: Liu Xinpeng --- init/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/init/Kconfig b/init/Kconfig index ed4994fa18b1..73689e1b3790 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -1102,6 +1102,7 @@ config RICH_CONTAINER depends on CFS_BANDWIDTH depends on CPUSETS select SCHED_SLI + select SCHEDSTATS default n help Make containers feel like VMs. Change the following interface -- Gitee