diff options
author | Mike Galbraith <efault@gmx.de> | 2009-12-10 03:25:53 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-12-10 03:34:50 -0500 |
commit | 4ca3ef71f54655af98b66e8ff308a47a2a580a53 (patch) | |
tree | 8c9bb089d56fbf1dd3902cb0a9f43b9b49d4fdc6 | |
parent | acb4a848da821a095ae9e4d8b22ae2d9633ba5cd (diff) |
sched: Fix build warning in get_update_sysctl_factor()
Signed-off-by: Mike Galbraith <efault@gmx.de>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
LKML-Reference: <new-submission>
-rw-r--r-- | kernel/sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 0a60e8e9b094..3de3deab8095 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -7033,7 +7033,7 @@ cpumask_var_t nohz_cpu_mask; | |||
7033 | */ | 7033 | */ |
7034 | static int get_update_sysctl_factor(void) | 7034 | static int get_update_sysctl_factor(void) |
7035 | { | 7035 | { |
7036 | unsigned int cpus = min(num_online_cpus(), 8); | 7036 | unsigned int cpus = min_t(int, num_online_cpus(), 8); |
7037 | unsigned int factor; | 7037 | unsigned int factor; |
7038 | 7038 | ||
7039 | switch (sysctl_sched_tunable_scaling) { | 7039 | switch (sysctl_sched_tunable_scaling) { |