lkml.org 
[lkml]   [2021]   [Dec]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] sched/pelt: fix code alignment problem
Date
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
\
 
 \ /
  Last update: 2021-12-01 08:16    [W:0.031 / U:0.100 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site