Commit 4ca3ef71 authored by Mike Galbraith's avatar Mike Galbraith Committed by Ingo Molnar

sched: Fix build warning in get_update_sysctl_factor()

Signed-off-by: default avatarMike Galbraith <efault@gmx.de>
Acked-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
LKML-Reference: <new-submission>
parent acb4a848
...@@ -7033,7 +7033,7 @@ cpumask_var_t nohz_cpu_mask; ...@@ -7033,7 +7033,7 @@ cpumask_var_t nohz_cpu_mask;
*/ */
static int get_update_sysctl_factor(void) static int get_update_sysctl_factor(void)
{ {
unsigned int cpus = min(num_online_cpus(), 8); unsigned int cpus = min_t(int, num_online_cpus(), 8);
unsigned int factor; unsigned int factor;
switch (sysctl_sched_tunable_scaling) { switch (sysctl_sched_tunable_scaling) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment