linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sched/pelt: fix code alignment problem
@ 2021-12-01  7:15 Yinan Liu
  0 siblings, 0 replies; only message in thread
From: Yinan Liu @ 2021-12-01  7:15 UTC (permalink / raw)
  To: peterz; +Cc: mingo, linux-kernel

link:https://lore.kernel.org/lkml/20200219135442.18107-8-mgorman@techsingularity.net/

runnable_load_avg is no more used and it is removed by this patch.
It makes extra spaces appear in the code.

before
	shares   = calc_group_shares(gcfs_rq);
	runnable = calc_group_runnable(gcfs_rq, shares);

current
	shares   = calc_group_shares(gcfs_rq);

The original three spaces were meant to be aligned, but
it doesn't make sense now.

Signed-off-by: Yinan Liu <yinan@linux.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 44c452072a1b..a344117d5aaf 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -3219,7 +3219,7 @@ static void update_cfs_group(struct sched_entity *se)
 	if (likely(se->load.weight == shares))
 		return;
 #else
-	shares   = calc_group_shares(gcfs_rq);
+	shares = calc_group_shares(gcfs_rq);
 #endif
 
 	reweight_entity(cfs_rq_of(se), se, shares);
-- 
2.19.1.6.gb485710b


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-12-01  7:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-01  7:15 [PATCH] sched/pelt: fix code alignment problem Yinan Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).