[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20251013193003.36215-1-arighi@nvidia.com>
Date: Mon, 13 Oct 2025 21:30:03 +0200
From: Andrea Righi <arighi@...dia.com>
To: Tejun Heo <tj@...nel.org>,
David Vernet <void@...ifault.com>,
Changwoo Min <changwoo@...lia.com>
Cc: sched-ext@...ts.linux.dev,
linux-kernel@...r.kernel.org
Subject: [PATCH sched_ext/for-6.19] sched_ext: Fix build error in cgroup_set_idle()
Commit a5bd6ba30b336 ("sched_ext: Use cgroup_lock/unlock() to
synchronize against cgroup operations") renamed scx_cgroup_rwsem to
scx_cgroup_ops_rwsem.
Update cgroup_set_idle() accordingly to fix the resulting build error.
Fixes: d579dc6eb4fd0 ("sched/ext: Implement cgroup_set_idle() callback")
Signed-off-by: Andrea Righi <arighi@...dia.com>
---
kernel/sched/ext.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/sched/ext.c b/kernel/sched/ext.c
index 228f4faef7670..430749ce46ab3 100644
--- a/kernel/sched/ext.c
+++ b/kernel/sched/ext.c
@@ -3217,7 +3217,7 @@ void scx_group_set_idle(struct task_group *tg, bool idle)
{
struct scx_sched *sch = scx_root;
- percpu_down_read(&scx_cgroup_rwsem);
+ percpu_down_read(&scx_cgroup_ops_rwsem);
if (scx_cgroup_enabled && SCX_HAS_OP(sch, cgroup_set_idle))
SCX_CALL_OP(sch, SCX_KF_UNLOCKED, cgroup_set_idle, NULL,
@@ -3226,7 +3226,7 @@ void scx_group_set_idle(struct task_group *tg, bool idle)
/* Update the task group's idle state */
tg->scx.idle = idle;
- percpu_up_read(&scx_cgroup_rwsem);
+ percpu_up_read(&scx_cgroup_ops_rwsem);
}
void scx_group_set_bandwidth(struct task_group *tg,
--
2.51.0
Powered by blists - more mailing lists