diff options
author | Alexander Gordeev <agordeev@redhat.com> | 2012-06-14 03:49:55 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-06-14 06:53:14 -0400 |
commit | ea3807ea52a53f2cdfd60c89d8491fc9a8208d1c (patch) | |
tree | fd9a02a9f0b304f0ce0add19c7eb43c7a1997bb6 /arch/x86/kernel/apic/apic.c | |
parent | a5a391561bc25898ba1a702a0c4b028aa5b11ce9 (diff) |
x86/apic: Fix ugly casting and branching in cpu_mask_to_apicid_and()
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Suresh Siddha <suresh.b.siddha@intel.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/20120614074954.GF3383@dhcp-26-207.brq.redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel/apic/apic.c')
-rw-r--r-- | arch/x86/kernel/apic/apic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index 048a4f806d46..c421512ca5eb 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c | |||
@@ -2127,19 +2127,19 @@ int default_cpu_mask_to_apicid_and(const struct cpumask *cpumask, | |||
2127 | const struct cpumask *andmask, | 2127 | const struct cpumask *andmask, |
2128 | unsigned int *apicid) | 2128 | unsigned int *apicid) |
2129 | { | 2129 | { |
2130 | int cpu; | 2130 | unsigned int cpu; |
2131 | 2131 | ||
2132 | for_each_cpu_and(cpu, cpumask, andmask) { | 2132 | for_each_cpu_and(cpu, cpumask, andmask) { |
2133 | if (cpumask_test_cpu(cpu, cpu_online_mask)) | 2133 | if (cpumask_test_cpu(cpu, cpu_online_mask)) |
2134 | break; | 2134 | break; |
2135 | } | 2135 | } |
2136 | 2136 | ||
2137 | if (likely((unsigned int)cpu < nr_cpu_ids)) { | 2137 | if (likely(cpu < nr_cpu_ids)) { |
2138 | *apicid = per_cpu(x86_cpu_to_apicid, cpu); | 2138 | *apicid = per_cpu(x86_cpu_to_apicid, cpu); |
2139 | return 0; | 2139 | return 0; |
2140 | } else { | ||
2141 | return -EINVAL; | ||
2142 | } | 2140 | } |
2141 | |||
2142 | return -EINVAL; | ||
2143 | } | 2143 | } |
2144 | 2144 | ||
2145 | /* | 2145 | /* |