[openwrt/openwrt] config: add new options for 6.12 kernel
LEDE Commits
lede-commits at lists.infradead.org
Wed Apr 30 07:27:48 PDT 2025
ansuel pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/d234afa72ab53cad3e8ff9869d78ea16ab561ace
commit d234afa72ab53cad3e8ff9869d78ea16ab561ace
Author: Mantas Pucka <mantas at 8devices.com>
AuthorDate: Mon Dec 9 14:38:22 2024 +0200
config: add new options for 6.12 kernel
Since kernel v6.12 couple more options were added to
CGROUP section. Add them here to avoid missing symbols.
Signed-off-by: Mantas Pucka <mantas at 8devices.com>
Link: https://github.com/openwrt/openwrt/pull/16547
Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
---
config/Config-kernel.in | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/config/Config-kernel.in b/config/Config-kernel.in
index 31d0e2dba4..95bcc2146a 100644
--- a/config/Config-kernel.in
+++ b/config/Config-kernel.in
@@ -861,6 +861,18 @@ if KERNEL_CGROUPS
Memory Nodes and assigning tasks to run only within those sets.
This is primarily useful on large SMP or NUMA systems.
+ config KERNEL_CPUSETS_V1
+ bool "Legacy cgroup v1 cpusets controller"
+ depends on KERNEL_CPUSETS
+ depends on !LINUX_6_6
+ default n
+ help
+ Legacy cgroup v1 cpusets controller which has been deprecated by
+ cgroup v2 implementation. The v1 is there for legacy applications
+ which haven't migrated to the new cgroup v2 interface yet. If you
+ do not have any such application then you are completely fine leaving
+ this option disabled.
+
config KERNEL_PROC_PID_CPUSET
bool "Include legacy /proc/<pid>/cpuset file"
depends on KERNEL_CPUSETS
@@ -952,6 +964,22 @@ if KERNEL_CGROUPS
Memory Controller, which are page-based, and can be swapped. Users of
the kmem extension can use it to guarantee that no group of processes
will ever exhaust kernel resources alone.
+
+ config KERNEL_MEMCG_V1
+ bool "Legacy cgroup v1 memory controller"
+ default n
+ depends on KERNEL_MEMCG
+ depends on !LINUX_6_6
+ help
+ Legacy cgroup v1 memory controller which has been deprecated by
+ cgroup v2 implementation. The v1 is there for legacy applications
+ which haven't migrated to the new cgroup v2 interface yet. If you
+ do not have any such application then you are completely fine leaving
+ this option disabled.
+
+ Please note that feature set of the legacy memory controller is likely
+ going to shrink due to deprecation process. New deployments with v1
+ controller are highly discouraged.
config KERNEL_CGROUP_PERF
bool "Enable perf_event per-cpu per-container group (cgroup) monitoring"
More information about the lede-commits
mailing list