sched_ext: Fix stale @cgroup_id in sched_ext_ops kernel-doc

The kernel-doc comment for sched_ext_ops::sub_cgroup_id uses the old
@cgroup_id name, which no longer matches the struct member. This
produces two kernel-doc warnings:

  Warning: struct member sub_cgroup_id not described in sched_ext_ops
  Warning: Excess struct member cgroup_id description in sched_ext_ops

Update the @param name to match the actual member.

Signed-off-by: Liang Luo <luoliang@kylinos.cn>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
Liang Luo 2026-07-31 10:30:04 +08:00 committed by Tejun Heo
parent ee7aece608
commit 680e0718b9

View File

@ -925,8 +925,8 @@ struct sched_ext_ops {
u32 cid_shard_size;
/**
* @cgroup_id: When >1, attach the scheduler as a sub-scheduler on the
* specified cgroup.
* @sub_cgroup_id: When >1, attach the scheduler as a sub-scheduler
* on the specified cgroup.
*/
u64 sub_cgroup_id;