diff options
Diffstat (limited to 'arch/x86/kernel/apic/ipi.c')
| -rw-r--r-- | arch/x86/kernel/apic/ipi.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/kernel/apic/ipi.c b/arch/x86/kernel/apic/ipi.c index 08385e090a6f..cce91bf26676 100644 --- a/arch/x86/kernel/apic/ipi.c +++ b/arch/x86/kernel/apic/ipi.c @@ -56,6 +56,8 @@ void default_send_IPI_mask_allbutself_phys(const struct cpumask *mask,  	local_irq_restore(flags);  } +#ifdef CONFIG_X86_32 +  void default_send_IPI_mask_sequence_logical(const struct cpumask *mask,  						 int vector)  { @@ -71,8 +73,8 @@ void default_send_IPI_mask_sequence_logical(const struct cpumask *mask,  	local_irq_save(flags);  	for_each_cpu(query_cpu, mask)  		__default_send_IPI_dest_field( -			apic->cpu_to_logical_apicid(query_cpu), vector, -			apic->dest_logical); +			early_per_cpu(x86_cpu_to_logical_apicid, query_cpu), +			vector, apic->dest_logical);  	local_irq_restore(flags);  } @@ -90,14 +92,12 @@ void default_send_IPI_mask_allbutself_logical(const struct cpumask *mask,  		if (query_cpu == this_cpu)  			continue;  		__default_send_IPI_dest_field( -			apic->cpu_to_logical_apicid(query_cpu), vector, -			apic->dest_logical); +			early_per_cpu(x86_cpu_to_logical_apicid, query_cpu), +			vector, apic->dest_logical);  		}  	local_irq_restore(flags);  } -#ifdef CONFIG_X86_32 -  /*   * This is only used on smaller machines.   */  | 
