On Fri, Oct 30 2020 at 11:50, Dave Jiang wrote: > --- a/include/linux/interrupt.h > +++ b/include/linux/interrupt.h > @@ -487,6 +487,8 @@ extern int irq_get_irqchip_state(unsigned int irq, enum irqchip_irq_state which, > extern int irq_set_irqchip_state(unsigned int irq, enum irqchip_irq_state which, > bool state); > > +int irq_set_auxdata(unsigned int irq, unsigned int which, u64 val); .... > +EXPORT_SYMBOL_GPL(irq_set_auxdata); Again: Read and follow documentation. This does not belong into this driver patch and wants to be a standalone preperatory patch. Also the core change, the irq chip, the iommu support and the device msi dependency has to be completely seperate from this idxd series. You cannot just dump a pile of patches touching several subsystems at once plus having dependencies on stuff which is not even agreed on and merged and then expect that everything just falls into place. The various subsystems involved are not holding their breath and putting a lock on development just because you have a series against some random snapshot. The dependencies, e.g. the device msi infrastructure, are not going to make their way magically into the proper maintainer tree either. If this ever goes into a mergeable state, then the merge logistics for this whole thing need to be carefully sorted out and it's on you to make that as simple as possible for every maintainer involved. Thanks, tglx