sched/eevdf: Always update V if se->on_rq when reweighting
authorTianchen Ding <dtcccc@linux.alibaba.com>
Wed, 6 Mar 2024 02:21:32 +0000 (10:21 +0800)
committerPeter Zijlstra <peterz@infradead.org>
Mon, 22 Apr 2024 11:01:26 +0000 (13:01 +0200)
reweight_eevdf() needs the latest V to do accurate calculation for new
ve and vd. So update V unconditionally when se is runnable.

Fixes: eab03c23c2a1 ("sched/eevdf: Fix vruntime adjustment on reweight")
Suggested-by: Abel Wu <wuyun.abel@bytedance.com>
Signed-off-by: Tianchen Ding <dtcccc@linux.alibaba.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Abel Wu <wuyun.abel@bytedance.com>
Tested-by: K Prateek Nayak <kprateek.nayak@amd.com>
Tested-by: Chen Yu <yu.c.chen@intel.com>
Link: https://lore.kernel.org/r/20240306022133.81008-2-dtcccc@linux.alibaba.com
kernel/sched/fair.c

index 03be0d1330a6b22336c91cd4cfeae7fd82838692..5551ce2af73e7ed139017ae636ab1ab839e95fd7 100644 (file)
@@ -3790,9 +3790,8 @@ static void reweight_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
 
        if (se->on_rq) {
                /* commit outstanding execution time */
-               if (curr)
-                       update_curr(cfs_rq);
-               else
+               update_curr(cfs_rq);
+               if (!curr)
                        __dequeue_entity(cfs_rq, se);
                update_load_sub(&cfs_rq->load, se->load.weight);
        }