[PATCH v2] sched/fair: Fix stale comment referencing update_cfs_shares()

Zhan Xusheng posted 1 patch 2 months ago
kernel/sched/fair.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH v2] sched/fair: Fix stale comment referencing update_cfs_shares()
Posted by Zhan Xusheng 2 months ago
update_cfs_shares() has been renamed to update_cfs_group(),
but some comments still refer to the old function name.

Update these comments to reflect the current code and avoid confusion.

Fixes: 1ea6c46a23f1 ("sched/fair: Propagate an effective runnable_load_avg")
Signed-off-by: Zhan Xusheng <zhanxusheng@xiaomi.com>
Reviewed-by: Christian Loehle <christian.loehle@arm.com>
---
 kernel/sched/fair.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index ab4114712be7..4577c302f3e3 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -4156,7 +4156,7 @@ static inline bool cfs_rq_is_decayed(struct cfs_rq *cfs_rq)
  * differential update where we store the last value we propagated. This in
  * turn allows skipping updates if the differential is 'small'.
  *
- * Updating tg's load_avg is necessary before update_cfs_share().
+ * Updating tg's load_avg is necessary before update_cfs_group().
  */
 static inline void update_tg_load_avg(struct cfs_rq *cfs_rq)
 {
@@ -4616,7 +4616,7 @@ static void migrate_se_pelt_lag(struct sched_entity *se) {}
  * The cfs_rq avg is the direct sum of all its entities (blocked and runnable)
  * avg. The immediate corollary is that all (fair) tasks must be attached.
  *
- * cfs_rq->avg is used for task_h_load() and update_cfs_share() for example.
+ * cfs_rq->avg is used for task_h_load() and update_cfs_group() for example.
  *
  * Return: true if the load decayed or we removed load.
  *
-- 
2.43.0
Re: [PATCH v2] sched/fair: Fix stale comment referencing update_cfs_shares()
Posted by Zhan Xusheng 1 month ago
From: Zhan Xusheng <zhanxusheng1024@gmail.com>

Hi Peter,

A polite ping on this trivial comment fix in case it fell through the
cracks. v2 was sent on 2026-04-08 with Christian's Reviewed-by:

  https://lore.kernel.org/lkml/20260408120140.26714-1-zhanxusheng@xiaomi.com/

Thanks,
Zhan