On Thu, 17 Sep 2015, Marc Zyngier wrote: > On 17/09/15 06:19, Yang Yingliang wrote: > > Add move_irqs() into kernel/irq/migration.c. > > So we can use it to migrate interrupts, when > > cpu is offline. > > > > Cc: Jiang Liu <jiang....@linux.intel.com> > > Cc: Thomas Gleixner <t...@linutronix.de> > > Cc: Marc Zyngier <marc.zyng...@arm.com> > > Cc: Mark Rutland <mark.rutl...@arm.com> > > Cc: Will Deacon <will.dea...@arm.com> > > Cc: Russell King - ARM Linux <li...@arm.linux.org.uk> > > Cc: Hanjun Guo <hanjun....@linaro.org> > > Signed-off-by: Yang Yingliang <yangyingli...@huawei.com> > > --- > > include/linux/irq.h | 4 +++ > > kernel/irq/migration.c | 66 > > ++++++++++++++++++++++++++++++++++++++++++++++++++ > > 2 files changed, 70 insertions(+) > > > > diff --git a/include/linux/irq.h b/include/linux/irq.h > > index 6f8b340..64e3a02 100644 > > --- a/include/linux/irq.h > > +++ b/include/linux/irq.h > > @@ -446,6 +446,10 @@ static inline void irq_move_irq(struct irq_data *data) > > { } > > static inline void irq_move_masked_irq(struct irq_data *data) { } > > #endif > > > > +#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_IRQ_MIGRATION) && > > defined(CONFIG_HOTPLUG_CPU) > > +void move_irqs(void); > > +#endif > > + > > I don't think having this prototype guarded by this #if is very useful. > You can probably leave it standalone.
Yes, there is no point if the function name is unique. Though move_irqs() is rather undescriptive. irq_break_affinities() might describe it quite well, but feel free to come up with soemthing better. Thanks, tglx -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/