sched/fair: Fix warning on non-SMP build
authorOlof Johansson <olof@lixom.net>
Sun, 25 Nov 2018 22:41:05 +0000 (14:41 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 27 Dec 2018 18:40:15 +0000 (10:40 -0800)
commit6d101ba6be2a26a3e1f513b5e293f0fd2b79ec5c
tree0666f64d4c38aec9687ccbc2bb9fd4c70c32e7d0
parentfc2fd5f0f1aa85925be2322275ee2dc5ac3acdf4
sched/fair: Fix warning on non-SMP build

Caused by making the variable static:

  kernel/sched/fair.c:119:21: warning: 'capacity_margin' defined but not used [-Wunused-variable]

Seems easiest to just move it up under the existing ifdef CONFIG_SMP
that's a few lines above.

Fixes: ed8885a14433a ('sched/fair: Make some variables static')
Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
kernel/sched/fair.c