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 | |
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>
-rw-r--r-- | arch/x86/kernel/apic/apic.c | 8 | ||||
-rw-r--r-- | arch/x86/kernel/apic/es7000_32.c | 2 | ||||
-rw-r--r-- | arch/x86/kernel/apic/summit_32.c | 2 | ||||
-rw-r--r-- | arch/x86/kernel/apic/x2apic_uv_x.c | 8 |
4 files changed, 10 insertions, 10 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 | /* |
diff --git a/arch/x86/kernel/apic/es7000_32.c b/arch/x86/kernel/apic/es7000_32.c index 2c5317ea1b83..effece2ea0db 100644 --- a/arch/x86/kernel/apic/es7000_32.c +++ b/arch/x86/kernel/apic/es7000_32.c | |||
@@ -529,7 +529,7 @@ static inline int | |||
529 | es7000_cpu_mask_to_apicid(const struct cpumask *cpumask, unsigned int *dest_id) | 529 | es7000_cpu_mask_to_apicid(const struct cpumask *cpumask, unsigned int *dest_id) |
530 | { | 530 | { |
531 | unsigned int round = 0; | 531 | unsigned int round = 0; |
532 | int cpu, uninitialized_var(apicid); | 532 | unsigned int cpu, uninitialized_var(apicid); |
533 | 533 | ||
534 | /* | 534 | /* |
535 | * The cpus in the mask must all be on the apic cluster. | 535 | * The cpus in the mask must all be on the apic cluster. |
diff --git a/arch/x86/kernel/apic/summit_32.c b/arch/x86/kernel/apic/summit_32.c index bbad180f2890..b53fd6c9993a 100644 --- a/arch/x86/kernel/apic/summit_32.c +++ b/arch/x86/kernel/apic/summit_32.c | |||
@@ -267,7 +267,7 @@ static inline int | |||
267 | summit_cpu_mask_to_apicid(const struct cpumask *cpumask, unsigned int *dest_id) | 267 | summit_cpu_mask_to_apicid(const struct cpumask *cpumask, unsigned int *dest_id) |
268 | { | 268 | { |
269 | unsigned int round = 0; | 269 | unsigned int round = 0; |
270 | int cpu, apicid = 0; | 270 | unsigned int cpu, apicid = 0; |
271 | 271 | ||
272 | /* | 272 | /* |
273 | * The cpus in the mask must all be on the apic cluster. | 273 | * The cpus in the mask must all be on the apic cluster. |
diff --git a/arch/x86/kernel/apic/x2apic_uv_x.c b/arch/x86/kernel/apic/x2apic_uv_x.c index 026de0114d15..8cfade9510a4 100644 --- a/arch/x86/kernel/apic/x2apic_uv_x.c +++ b/arch/x86/kernel/apic/x2apic_uv_x.c | |||
@@ -274,7 +274,7 @@ uv_cpu_mask_to_apicid_and(const struct cpumask *cpumask, | |||
274 | const struct cpumask *andmask, | 274 | const struct cpumask *andmask, |
275 | unsigned int *apicid) | 275 | unsigned int *apicid) |
276 | { | 276 | { |
277 | int cpu; | 277 | int unsigned cpu; |
278 | 278 | ||
279 | /* | 279 | /* |
280 | * We're using fixed IRQ delivery, can only return one phys APIC ID. | 280 | * We're using fixed IRQ delivery, can only return one phys APIC ID. |
@@ -285,12 +285,12 @@ uv_cpu_mask_to_apicid_and(const struct cpumask *cpumask, | |||
285 | break; | 285 | break; |
286 | } | 286 | } |
287 | 287 | ||
288 | if (likely((unsigned int)cpu < nr_cpu_ids)) { | 288 | if (likely(cpu < nr_cpu_ids)) { |
289 | *apicid = per_cpu(x86_cpu_to_apicid, cpu) | uv_apicid_hibits; | 289 | *apicid = per_cpu(x86_cpu_to_apicid, cpu) | uv_apicid_hibits; |
290 | return 0; | 290 | return 0; |
291 | } else { | ||
292 | return -EINVAL; | ||
293 | } | 291 | } |
292 | |||
293 | return -EINVAL; | ||
294 | } | 294 | } |
295 | 295 | ||
296 | static unsigned int x2apic_get_apic_id(unsigned long x) | 296 | static unsigned int x2apic_get_apic_id(unsigned long x) |