diff options
author | Michal Koutný <mkoutny@suse.com> | 2025-03-11 13:36:24 +0100 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2025-03-11 09:22:54 -1000 |
commit | 103149a0632eca460242ef01050f08a5050a32ce (patch) | |
tree | 1cf721a09ad70e0f46a07a1fea1d02fcc02f0022 | |
parent | db4dc20c1140ab56dc31a73c4b48a50fad7a5634 (diff) |
RFC cgroup/cpuset-v1: Add deprecation messages to sched_relax_domain_level
This is not a properly hierarchical resource, it might be better
implemented based on a sched_attr.
Cc: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Signed-off-by: Michal Koutný <mkoutny@suse.com>
Acked-by: Waiman Long <longman@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
-rw-r--r-- | kernel/cgroup/cpuset-v1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/cgroup/cpuset-v1.c b/kernel/cgroup/cpuset-v1.c index a1bbbd345041..b69a7db67090 100644 --- a/kernel/cgroup/cpuset-v1.c +++ b/kernel/cgroup/cpuset-v1.c @@ -176,6 +176,7 @@ static int cpuset_write_s64(struct cgroup_subsys_state *css, struct cftype *cft, switch (type) { case FILE_SCHED_RELAX_DOMAIN_LEVEL: + pr_info_once("cpuset.%s is deprecated\n", cft->name); retval = update_relax_domain_level(cs, val); break; default: |