x86/irq: Remove the cpumask allocation from send_cleanup_vector()
There is no need to allocate a new cpumask for sending the cleanup vector. The old_domain mask is now protected by the vector_lock, so we can safely remove the offline cpus from it and send the IPI with the resulting mask. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Tested-by: Borislav Petkov <bp@alien8.de> Tested-by: Joe Lawrence <joe.lawrence@stratus.com> Cc: Jiang Liu <jiang.liu@linux.intel.com> Cc: Jeremiah Mahler <jmmahler@gmail.com> Cc: andy.shevchenko@gmail.com Cc: Guenter Roeck <linux@roeck-us.net> Cc: stable@vger.kernel.org #4.3+ Link: http://lkml.kernel.org/r/20151231160106.967993932@linutronix.de Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
@@ -530,21 +530,11 @@ static struct irq_chip lapic_controller = {
|
|||||||
#ifdef CONFIG_SMP
|
#ifdef CONFIG_SMP
|
||||||
static void __send_cleanup_vector(struct apic_chip_data *data)
|
static void __send_cleanup_vector(struct apic_chip_data *data)
|
||||||
{
|
{
|
||||||
cpumask_var_t cleanup_mask;
|
|
||||||
|
|
||||||
raw_spin_lock(&vector_lock);
|
raw_spin_lock(&vector_lock);
|
||||||
|
cpumask_and(data->old_domain, data->old_domain, cpu_online_mask);
|
||||||
data->move_in_progress = 0;
|
data->move_in_progress = 0;
|
||||||
if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
|
if (!cpumask_empty(data->old_domain))
|
||||||
unsigned int i;
|
apic->send_IPI_mask(data->old_domain, IRQ_MOVE_CLEANUP_VECTOR);
|
||||||
|
|
||||||
for_each_cpu_and(i, data->old_domain, cpu_online_mask)
|
|
||||||
apic->send_IPI_mask(cpumask_of(i),
|
|
||||||
IRQ_MOVE_CLEANUP_VECTOR);
|
|
||||||
} else {
|
|
||||||
cpumask_and(cleanup_mask, data->old_domain, cpu_online_mask);
|
|
||||||
apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
|
|
||||||
free_cpumask_var(cleanup_mask);
|
|
||||||
}
|
|
||||||
raw_spin_unlock(&vector_lock);
|
raw_spin_unlock(&vector_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user