Merge branch 'core/iommu' into core/urgent
[firefly-linux-kernel-4.4.55.git] / arch / x86 / kernel / genx2apic_cluster.c
index d451c9b9fdff22a3d397b2f0de7aa0054cdbe509..6ce497cc372d60c54942c839311f9767e477507f 100644 (file)
@@ -114,7 +114,7 @@ static unsigned int x2apic_cpu_mask_to_apicid(const struct cpumask *cpumask)
        int cpu;
 
        /*
-        * We're using fixed IRQ delivery, can only return one phys APIC ID.
+        * We're using fixed IRQ delivery, can only return one logical APIC ID.
         * May as well be the first.
         */
        cpu = cpumask_first(cpumask);
@@ -130,14 +130,14 @@ static unsigned int x2apic_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
        int cpu;
 
        /*
-        * We're using fixed IRQ delivery, can only return one phys APIC ID.
+        * We're using fixed IRQ delivery, can only return one logical APIC ID.
         * May as well be the first.
         */
        for_each_cpu_and(cpu, cpumask, andmask)
                if (cpumask_test_cpu(cpu, cpu_online_mask))
                        break;
        if (cpu < nr_cpu_ids)
-               return per_cpu(x86_cpu_to_apicid, cpu);
+               return per_cpu(x86_cpu_to_logical_apicid, cpu);
        return BAD_APICID;
 }