* [PATCH] sched/loadavg: fix comment for avenrun calculation
@ 2025-05-14 13:10 JaeYoon Lee
0 siblings, 0 replies; only message in thread
From: JaeYoon Lee @ 2025-05-14 13:10 UTC (permalink / raw)
To: mingo, peterz, juri.lelli, vincent.guittot; +Cc: linux-kernel, JaeYoon Lee
The comment in loadavg.c incorrectly states that each avenrun[n] value is
calculated based on avenrun[0], but the code updates each avenrun[n]
independently. This patch fixes the comment to reflect the actual logic.
Signed-off-by: JaeYoon Lee <lblbjy@gmail.com>
---
kernel/sched/loadavg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/sched/loadavg.c b/kernel/sched/loadavg.c
index c48900b856a2..060b0948c78d 100644
--- a/kernel/sched/loadavg.c
+++ b/kernel/sched/loadavg.c
@@ -22,7 +22,7 @@
* for_each_possible_cpu(cpu)
* nr_active += cpu_of(cpu)->nr_running + cpu_of(cpu)->nr_uninterruptible;
*
- * avenrun[n] = avenrun[0] * exp_n + nr_active * (1 - exp_n)
+ * avenrun[n] = avenrun[n] * exp_n + nr_active * (1 - exp_n)
*
* Due to a number of reasons the above turns in the mess below:
*
--
2.29.2
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-05-14 13:10 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-05-14 13:10 [PATCH] sched/loadavg: fix comment for avenrun calculation JaeYoon Lee
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®