diff options
| author | Vincent Guittot <[email protected]> | 2018-02-13 09:59:42 +0100 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2018-02-13 10:32:36 +0100 |
| commit | 387f77cc8249c847b4fa4d8c93694818b79efee3 (patch) | |
| tree | 3046da4defa9241c63275a957bedfaf6d3003cec | |
| parent | 6a546c7e69ff0b69581377cc70d7e8a601b98fce (diff) | |
sched/fair: Remove stray space in #ifdef
Remove a useless space in # ifdef and align it with others.
Signed-off-by: Vincent Guittot <[email protected]>
Acked-by: Peter Zijlstra <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
| -rw-r--r-- | kernel/sched/fair.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 5eb3ffc9be84..820f94c9b200 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -2823,7 +2823,7 @@ void reweight_task(struct task_struct *p, int prio) } #ifdef CONFIG_FAIR_GROUP_SCHED -# ifdef CONFIG_SMP +#ifdef CONFIG_SMP /* * All this does is approximate the hierarchical proportion which includes that * global sum we all love to hate. @@ -2974,7 +2974,7 @@ static long calc_group_runnable(struct cfs_rq *cfs_rq, long shares) return clamp_t(long, runnable, MIN_SHARES, shares); } -# endif /* CONFIG_SMP */ +#endif /* CONFIG_SMP */ static inline int throttled_hierarchy(struct cfs_rq *cfs_rq); |