]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
x86/apic: Fix ugly casting and branching in cpu_mask_to_apicid_and()
authorAlexander Gordeev <agordeev@redhat.com>
Thu, 14 Jun 2012 07:49:55 +0000 (09:49 +0200)
committerIngo Molnar <mingo@kernel.org>
Thu, 14 Jun 2012 10:53:14 +0000 (12:53 +0200)
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>
arch/x86/kernel/apic/apic.c
arch/x86/kernel/apic/es7000_32.c
arch/x86/kernel/apic/summit_32.c
arch/x86/kernel/apic/x2apic_uv_x.c

index 048a4f806d46f181331e9e2634c3c7065a0ef5e4..c421512ca5eb33ceb79de6ce3b4284a96356ede4 100644 (file)
@@ -2127,19 +2127,19 @@ int default_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
                                   const struct cpumask *andmask,
                                   unsigned int *apicid)
 {
-       int cpu;
+       unsigned int cpu;
 
        for_each_cpu_and(cpu, cpumask, andmask) {
                if (cpumask_test_cpu(cpu, cpu_online_mask))
                        break;
        }
 
-       if (likely((unsigned int)cpu < nr_cpu_ids)) {
+       if (likely(cpu < nr_cpu_ids)) {
                *apicid = per_cpu(x86_cpu_to_apicid, cpu);
                return 0;
-       } else {
-               return -EINVAL;
        }
+
+       return -EINVAL;
 }
 
 /*
index 2c5317ea1b8308579becc1c7e7dad788fd5edc28..effece2ea0db3ec1af5cafb6d5fc47125180d08f 100644 (file)
@@ -529,7 +529,7 @@ static inline int
 es7000_cpu_mask_to_apicid(const struct cpumask *cpumask, unsigned int *dest_id)
 {
        unsigned int round = 0;
-       int cpu, uninitialized_var(apicid);
+       unsigned int cpu, uninitialized_var(apicid);
 
        /*
         * The cpus in the mask must all be on the apic cluster.
index bbad180f28907e03a63a86efade133895ba594e3..b53fd6c9993ac2fa003766d646224200a2030e4d 100644 (file)
@@ -267,7 +267,7 @@ static inline int
 summit_cpu_mask_to_apicid(const struct cpumask *cpumask, unsigned int *dest_id)
 {
        unsigned int round = 0;
-       int cpu, apicid = 0;
+       unsigned int cpu, apicid = 0;
 
        /*
         * The cpus in the mask must all be on the apic cluster.
index 026de0114d152cc0ff1a857f78d2fad7e0693d66..8cfade9510a41b10a03a8964a6ff9ed7c914cb2f 100644 (file)
@@ -274,7 +274,7 @@ uv_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
                          const struct cpumask *andmask,
                          unsigned int *apicid)
 {
-       int cpu;
+       int unsigned cpu;
 
        /*
         * 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,
                        break;
        }
 
-       if (likely((unsigned int)cpu < nr_cpu_ids)) {
+       if (likely(cpu < nr_cpu_ids)) {
                *apicid = per_cpu(x86_cpu_to_apicid, cpu) | uv_apicid_hibits;
                return 0;
-       } else {
-               return -EINVAL;
        }
+
+       return -EINVAL;
 }
 
 static unsigned int x2apic_get_apic_id(unsigned long x)