[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20240102064958.100300-1-liusong@linux.alibaba.com>
Date: Tue, 2 Jan 2024 14:49:58 +0800
From: Liu Song <liusong@...ux.alibaba.com>
To: mingo@...hat.com,
peterz@...radead.org
Cc: linux-kernel@...r.kernel.org,
liusong@...ux.alibaba.com
Subject: [PATCH] sched/eevdf: fix typo in the comment of place_entity
In the derivation of the formula, 'l' should be 'vl_i', fix it.
Signed-off-by: Liu Song <liusong@...ux.alibaba.com>
---
kernel/sched/fair.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index bcd0f230e21f..b3dc606ce565 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -5177,7 +5177,7 @@ place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
* V' = (\Sum w_j*v_j + w_i*v_i) / (W + w_i)
* = (W*V + w_i*(V - vl_i)) / (W + w_i)
* = (W*V + w_i*V - w_i*vl_i) / (W + w_i)
- * = (V*(W + w_i) - w_i*l) / (W + w_i)
+ * = (V*(W + w_i) - w_i*vl_i) / (W + w_i)
* = V - w_i*vl_i / (W + w_i)
*
* And the actual lag after adding an entity with vl_i is:
--
2.19.1.6.gb485710b
Powered by blists - more mailing lists