All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: LKML <linux-kernel@vger.kernel.org>
Cc: Bjorn Helgaas <helgaas@kernel.org>, Marc Zygnier <maz@kernel.org>,
	Alex Williamson <alex.williamson@redhat.com>,
	Kevin Tian <kevin.tian@intel.com>,
	Jason Gunthorpe <jgg@nvidia.com>, Megha Dey <megha.dey@intel.com>,
	Ashok Raj <ashok.raj@intel.com>,
	linux-pci@vger.kernel.org, Cedric Le Goater <clg@kaod.org>,
	Michael Ellerman <mpe@ellerman.id.au>,
	Paul Mackerras <paulus@samba.org>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	linuxppc-dev@lists.ozlabs.org, Juergen Gross <jgross@suse.com>,
	Thomas Bogendoerfer <tsbogend@alpha.franken.de>,
	linux-mips@vger.kernel.org, Kalle Valo <kvalo@codeaurora.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	sparclinux@vger.kernel.org, x86@kernel.org,
	xen-devel@lists.xenproject.org, ath11k@lists.infradead.org,
	Wei Liu <wei.liu@kernel.org>,
	linux-hyperv@vger.kernel.org,
	Christian Borntraeger <borntraeger@de.ibm.com>,
	Heiko Carstens <hca@linux.ibm.com>
Subject: [patch V2 00/23] genirq/msi, PCI/MSI: Spring cleaning - Part 1
Date: Mon,  6 Dec 2021 23:27:23 +0100 (CET)	[thread overview]
Message-ID: <20211206210147.872865823@linutronix.de> (raw)

The [PCI] MSI code has gained quite some warts over time. A recent
discussion unearthed a shortcoming: the lack of support for expanding
PCI/MSI-X vectors after initialization of MSI-X.

PCI/MSI-X has no requirement to setup all vectors when MSI-X is enabled in
the device. The non-used vectors have just to be masked in the vector
table. For PCI/MSI this is not possible because the number of vectors
cannot be changed after initialization.

The PCI/MSI code, but also the core MSI irq domain code are built around
the assumption that all required vectors are installed at initialization
time and freed when the device is shut down by the driver.

Supporting dynamic expansion at least for MSI-X is important for VFIO so
that the host side interrupts for passthrough devices can be installed on
demand.

This is the first part of a large (total 101 patches) series which
refactors the [PCI]MSI infrastructure to make runtime expansion of MSI-X
vectors possible. The last part (10 patches) provide this functionality.

The first part is mostly a cleanup which consolidates code, moves the PCI
MSI code into a separate directory and splits it up into several parts.

No functional change intended except for patch 2/N which changes the
behaviour of pci_get_vector()/affinity() to get rid of the assumption that
the provided index is the "index" into the descriptor list instead of using
it as the actual MSI[X] index as seen by the hardware. This would break
users of sparse allocated MSI-X entries, but non of them use these
functions.

This series is based on 5.16-rc2 and also available via git:

   git://git.kernel.org/pub/scm/linux/kernel/git/tglx/devel.git msi-v2-part-1

For the curious who can't wait for the next part to arrive the full series
is available via:

   git://git.kernel.org/pub/scm/linux/kernel/git/tglx/devel.git msi-v2-part-3

V1 of this series can be found here:

   https://lore.kernel.org/r/20211126222700.862407977@linutronix.de

Changes versus V1:

  - Add missing includes and use correct variable name in legacy code - Cedric

  - Moved the MSI lock from struct device to struct pci_dev - New patch

    This is really PCI/MSI specific and there is no point to have it
    in every struct device. Neither does it make sense to hide it
    in msi_device_data as the V1 series part 2 did.

  - Picked up Reviewed/Tested/Acked-by tags as appropriate

Thanks,

	tglx
---
 arch/powerpc/platforms/4xx/msi.c            |  281 ------------
 b/Documentation/driver-api/pci/pci.rst      |    2 
 b/arch/mips/pci/msi-octeon.c                |   32 -
 b/arch/powerpc/platforms/4xx/Makefile       |    1 
 b/arch/powerpc/platforms/cell/axon_msi.c    |    2 
 b/arch/powerpc/platforms/powernv/pci-ioda.c |    4 
 b/arch/powerpc/platforms/pseries/msi.c      |    6 
 b/arch/powerpc/sysdev/Kconfig               |    6 
 b/arch/s390/pci/pci_irq.c                   |    4 
 b/arch/sparc/kernel/pci_msi.c               |    4 
 b/arch/x86/hyperv/irqdomain.c               |   55 --
 b/arch/x86/include/asm/x86_init.h           |    6 
 b/arch/x86/include/asm/xen/hypervisor.h     |    8 
 b/arch/x86/kernel/apic/msi.c                |    8 
 b/arch/x86/kernel/x86_init.c                |   12 
 b/arch/x86/pci/xen.c                        |   19 
 b/drivers/base/core.c                       |    1 
 b/drivers/irqchip/irq-gic-v2m.c             |    1 
 b/drivers/irqchip/irq-gic-v3-its-pci-msi.c  |    1 
 b/drivers/irqchip/irq-gic-v3-mbi.c          |    1 
 b/drivers/net/wireless/ath/ath11k/pci.c     |    2 
 b/drivers/pci/Makefile                      |    3 
 b/drivers/pci/msi/Makefile                  |    7 
 b/drivers/pci/msi/irqdomain.c               |  267 +++++++++++
 b/drivers/pci/msi/legacy.c                  |   79 +++
 b/drivers/pci/msi/msi.c                     |  647 ++++------------------------
 b/drivers/pci/msi/msi.h                     |   39 +
 b/drivers/pci/msi/pcidev_msi.c              |   43 +
 b/drivers/pci/pci-sysfs.c                   |    7 
 b/drivers/pci/probe.c                       |    4 
 b/drivers/pci/xen-pcifront.c                |    2 
 b/include/linux/device.h                    |    2 
 b/include/linux/msi.h                       |  136 ++---
 b/include/linux/pci.h                       |    2 
 b/kernel/irq/msi.c                          |   41 +
 35 files changed, 702 insertions(+), 1033 deletions(-)


WARNING: multiple messages have this Message-ID (diff)
From: Thomas Gleixner <tglx@linutronix.de>
To: LKML <linux-kernel@vger.kernel.org>
Cc: Bjorn Helgaas <helgaas@kernel.org>, Marc Zygnier <maz@kernel.org>,
	Alex Williamson <alex.williamson@redhat.com>,
	Kevin Tian <kevin.tian@intel.com>,
	Jason Gunthorpe <jgg@nvidia.com>, Megha Dey <megha.dey@intel.com>,
	Ashok Raj <ashok.raj@intel.com>,
	linux-pci@vger.kernel.org, Cedric Le Goater <clg@kaod.org>,
	Michael Ellerman <mpe@ellerman.id.au>,
	Paul Mackerras <paulus@samba.org>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	linuxppc-dev@lists.ozlabs.org, Juergen Gross <jgross@suse.com>,
	Thomas Bogendoerfer <tsbogend@alpha.franken.de>,
	linux-mips@vger.kernel.org, Kalle Valo <kvalo@codeaurora.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	sparclinux@vger.kernel.org, x86@kernel.org,
	xen-devel@lists.xenproject.org, ath11k@lists.infradead.org,
	Wei Liu <wei.liu@kernel.org>,
	linux-hyperv@vger.kernel.org,
	Christian Borntraeger <borntraeger@de.ibm.com>,
	Heiko Carstens <hca@linux.ibm.com>
Subject: [patch V2 00/23] genirq/msi, PCI/MSI: Spring cleaning - Part 1
Date: Mon,  6 Dec 2021 23:27:23 +0100 (CET)	[thread overview]
Message-ID: <20211206210147.872865823@linutronix.de> (raw)

The [PCI] MSI code has gained quite some warts over time. A recent
discussion unearthed a shortcoming: the lack of support for expanding
PCI/MSI-X vectors after initialization of MSI-X.

PCI/MSI-X has no requirement to setup all vectors when MSI-X is enabled in
the device. The non-used vectors have just to be masked in the vector
table. For PCI/MSI this is not possible because the number of vectors
cannot be changed after initialization.

The PCI/MSI code, but also the core MSI irq domain code are built around
the assumption that all required vectors are installed at initialization
time and freed when the device is shut down by the driver.

Supporting dynamic expansion at least for MSI-X is important for VFIO so
that the host side interrupts for passthrough devices can be installed on
demand.

This is the first part of a large (total 101 patches) series which
refactors the [PCI]MSI infrastructure to make runtime expansion of MSI-X
vectors possible. The last part (10 patches) provide this functionality.

The first part is mostly a cleanup which consolidates code, moves the PCI
MSI code into a separate directory and splits it up into several parts.

No functional change intended except for patch 2/N which changes the
behaviour of pci_get_vector()/affinity() to get rid of the assumption that
the provided index is the "index" into the descriptor list instead of using
it as the actual MSI[X] index as seen by the hardware. This would break
users of sparse allocated MSI-X entries, but non of them use these
functions.

This series is based on 5.16-rc2 and also available via git:

   git://git.kernel.org/pub/scm/linux/kernel/git/tglx/devel.git msi-v2-part-1

For the curious who can't wait for the next part to arrive the full series
is available via:

   git://git.kernel.org/pub/scm/linux/kernel/git/tglx/devel.git msi-v2-part-3

V1 of this series can be found here:

   https://lore.kernel.org/r/20211126222700.862407977@linutronix.de

Changes versus V1:

  - Add missing includes and use correct variable name in legacy code - Cedric

  - Moved the MSI lock from struct device to struct pci_dev - New patch

    This is really PCI/MSI specific and there is no point to have it
    in every struct device. Neither does it make sense to hide it
    in msi_device_data as the V1 series part 2 did.

  - Picked up Reviewed/Tested/Acked-by tags as appropriate

Thanks,

	tglx
---
 arch/powerpc/platforms/4xx/msi.c            |  281 ------------
 b/Documentation/driver-api/pci/pci.rst      |    2 
 b/arch/mips/pci/msi-octeon.c                |   32 -
 b/arch/powerpc/platforms/4xx/Makefile       |    1 
 b/arch/powerpc/platforms/cell/axon_msi.c    |    2 
 b/arch/powerpc/platforms/powernv/pci-ioda.c |    4 
 b/arch/powerpc/platforms/pseries/msi.c      |    6 
 b/arch/powerpc/sysdev/Kconfig               |    6 
 b/arch/s390/pci/pci_irq.c                   |    4 
 b/arch/sparc/kernel/pci_msi.c               |    4 
 b/arch/x86/hyperv/irqdomain.c               |   55 --
 b/arch/x86/include/asm/x86_init.h           |    6 
 b/arch/x86/include/asm/xen/hypervisor.h     |    8 
 b/arch/x86/kernel/apic/msi.c                |    8 
 b/arch/x86/kernel/x86_init.c                |   12 
 b/arch/x86/pci/xen.c                        |   19 
 b/drivers/base/core.c                       |    1 
 b/drivers/irqchip/irq-gic-v2m.c             |    1 
 b/drivers/irqchip/irq-gic-v3-its-pci-msi.c  |    1 
 b/drivers/irqchip/irq-gic-v3-mbi.c          |    1 
 b/drivers/net/wireless/ath/ath11k/pci.c     |    2 
 b/drivers/pci/Makefile                      |    3 
 b/drivers/pci/msi/Makefile                  |    7 
 b/drivers/pci/msi/irqdomain.c               |  267 +++++++++++
 b/drivers/pci/msi/legacy.c                  |   79 +++
 b/drivers/pci/msi/msi.c                     |  647 ++++------------------------
 b/drivers/pci/msi/msi.h                     |   39 +
 b/drivers/pci/msi/pcidev_msi.c              |   43 +
 b/drivers/pci/pci-sysfs.c                   |    7 
 b/drivers/pci/probe.c                       |    4 
 b/drivers/pci/xen-pcifront.c                |    2 
 b/include/linux/device.h                    |    2 
 b/include/linux/msi.h                       |  136 ++---
 b/include/linux/pci.h                       |    2 
 b/kernel/irq/msi.c                          |   41 +
 35 files changed, 702 insertions(+), 1033 deletions(-)

-- 
ath11k mailing list
ath11k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath11k

WARNING: multiple messages have this Message-ID (diff)
From: Thomas Gleixner <tglx@linutronix.de>
To: LKML <linux-kernel@vger.kernel.org>
Cc: linux-hyperv@vger.kernel.org, Paul Mackerras <paulus@samba.org>,
	sparclinux@vger.kernel.org, Wei Liu <wei.liu@kernel.org>,
	Ashok Raj <ashok.raj@intel.com>,
	x86@kernel.org, Christian Borntraeger <borntraeger@de.ibm.com>,
	Bjorn Helgaas <helgaas@kernel.org>,
	Megha Dey <megha.dey@intel.com>, Jason Gunthorpe <jgg@nvidia.com>,
	linux-pci@vger.kernel.org, xen-devel@lists.xenproject.org,
	ath11k@lists.infradead.org, Kevin Tian <kevin.tian@intel.com>,
	Heiko Carstens <hca@linux.ibm.com>,
	Alex Williamson <alex.williamson@redhat.com>,
	Cedric Le Goater <clg@kaod.org>,
	Kalle Valo <kvalo@codeaurora.org>,
	Juergen Gross <jgross@suse.com>,
	Thomas Bogendoerfer <tsbogend@alpha.franken.de>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-mips@vger.kernel.org, Marc Zygnier <maz@kernel.org>,
	linuxppc-dev@lists.ozlabs.org
Subject: [patch V2 00/23] genirq/msi, PCI/MSI: Spring cleaning - Part 1
Date: Mon,  6 Dec 2021 23:27:23 +0100 (CET)	[thread overview]
Message-ID: <20211206210147.872865823@linutronix.de> (raw)

The [PCI] MSI code has gained quite some warts over time. A recent
discussion unearthed a shortcoming: the lack of support for expanding
PCI/MSI-X vectors after initialization of MSI-X.

PCI/MSI-X has no requirement to setup all vectors when MSI-X is enabled in
the device. The non-used vectors have just to be masked in the vector
table. For PCI/MSI this is not possible because the number of vectors
cannot be changed after initialization.

The PCI/MSI code, but also the core MSI irq domain code are built around
the assumption that all required vectors are installed at initialization
time and freed when the device is shut down by the driver.

Supporting dynamic expansion at least for MSI-X is important for VFIO so
that the host side interrupts for passthrough devices can be installed on
demand.

This is the first part of a large (total 101 patches) series which
refactors the [PCI]MSI infrastructure to make runtime expansion of MSI-X
vectors possible. The last part (10 patches) provide this functionality.

The first part is mostly a cleanup which consolidates code, moves the PCI
MSI code into a separate directory and splits it up into several parts.

No functional change intended except for patch 2/N which changes the
behaviour of pci_get_vector()/affinity() to get rid of the assumption that
the provided index is the "index" into the descriptor list instead of using
it as the actual MSI[X] index as seen by the hardware. This would break
users of sparse allocated MSI-X entries, but non of them use these
functions.

This series is based on 5.16-rc2 and also available via git:

   git://git.kernel.org/pub/scm/linux/kernel/git/tglx/devel.git msi-v2-part-1

For the curious who can't wait for the next part to arrive the full series
is available via:

   git://git.kernel.org/pub/scm/linux/kernel/git/tglx/devel.git msi-v2-part-3

V1 of this series can be found here:

   https://lore.kernel.org/r/20211126222700.862407977@linutronix.de

Changes versus V1:

  - Add missing includes and use correct variable name in legacy code - Cedric

  - Moved the MSI lock from struct device to struct pci_dev - New patch

    This is really PCI/MSI specific and there is no point to have it
    in every struct device. Neither does it make sense to hide it
    in msi_device_data as the V1 series part 2 did.

  - Picked up Reviewed/Tested/Acked-by tags as appropriate

Thanks,

	tglx
---
 arch/powerpc/platforms/4xx/msi.c            |  281 ------------
 b/Documentation/driver-api/pci/pci.rst      |    2 
 b/arch/mips/pci/msi-octeon.c                |   32 -
 b/arch/powerpc/platforms/4xx/Makefile       |    1 
 b/arch/powerpc/platforms/cell/axon_msi.c    |    2 
 b/arch/powerpc/platforms/powernv/pci-ioda.c |    4 
 b/arch/powerpc/platforms/pseries/msi.c      |    6 
 b/arch/powerpc/sysdev/Kconfig               |    6 
 b/arch/s390/pci/pci_irq.c                   |    4 
 b/arch/sparc/kernel/pci_msi.c               |    4 
 b/arch/x86/hyperv/irqdomain.c               |   55 --
 b/arch/x86/include/asm/x86_init.h           |    6 
 b/arch/x86/include/asm/xen/hypervisor.h     |    8 
 b/arch/x86/kernel/apic/msi.c                |    8 
 b/arch/x86/kernel/x86_init.c                |   12 
 b/arch/x86/pci/xen.c                        |   19 
 b/drivers/base/core.c                       |    1 
 b/drivers/irqchip/irq-gic-v2m.c             |    1 
 b/drivers/irqchip/irq-gic-v3-its-pci-msi.c  |    1 
 b/drivers/irqchip/irq-gic-v3-mbi.c          |    1 
 b/drivers/net/wireless/ath/ath11k/pci.c     |    2 
 b/drivers/pci/Makefile                      |    3 
 b/drivers/pci/msi/Makefile                  |    7 
 b/drivers/pci/msi/irqdomain.c               |  267 +++++++++++
 b/drivers/pci/msi/legacy.c                  |   79 +++
 b/drivers/pci/msi/msi.c                     |  647 ++++------------------------
 b/drivers/pci/msi/msi.h                     |   39 +
 b/drivers/pci/msi/pcidev_msi.c              |   43 +
 b/drivers/pci/pci-sysfs.c                   |    7 
 b/drivers/pci/probe.c                       |    4 
 b/drivers/pci/xen-pcifront.c                |    2 
 b/include/linux/device.h                    |    2 
 b/include/linux/msi.h                       |  136 ++---
 b/include/linux/pci.h                       |    2 
 b/kernel/irq/msi.c                          |   41 +
 35 files changed, 702 insertions(+), 1033 deletions(-)


             reply	other threads:[~2021-12-06 22:27 UTC|newest]

Thread overview: 200+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-06 22:27 Thomas Gleixner [this message]
2021-12-06 22:27 ` [patch V2 00/23] genirq/msi, PCI/MSI: Spring cleaning - Part 1 Thomas Gleixner
2021-12-06 22:27 ` Thomas Gleixner
2021-12-06 22:27 ` [patch V2 01/23] powerpc/4xx: Remove MSI support which never worked Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:21   ` Cédric Le Goater
2021-12-07  7:21     ` Cédric Le Goater
2021-12-07  7:21     ` Cédric Le Goater
2021-12-07 11:36     ` Michael Ellerman
2021-12-07 11:36       ` Michael Ellerman
2021-12-07 11:36       ` Michael Ellerman
2021-12-07 15:50       ` Cédric Le Goater
2021-12-07 15:50         ` Cédric Le Goater
2021-12-07 15:50         ` Cédric Le Goater
2021-12-07 20:42         ` Thomas Gleixner
2021-12-07 20:42           ` Thomas Gleixner
2021-12-07 20:42           ` Thomas Gleixner
2021-12-08 10:44           ` Cédric Le Goater
2021-12-08 10:44             ` Cédric Le Goater
2021-12-08 10:44             ` Cédric Le Goater
2021-12-09 16:07             ` [tip: irq/msi] powerpc/4xx: Complete removal of MSI support tip-bot2 for Cédric Le Goater
2021-12-09 16:07   ` [tip: irq/msi] powerpc/4xx: Remove MSI support which never worked tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 02/23] PCI/MSI: Fix pci_irq_vector()/pci_irq_get_affinity() Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07 20:53   ` Bjorn Helgaas
2021-12-07 20:53     ` Bjorn Helgaas
2021-12-07 20:53     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 03/23] genirq/msi: Guard sysfs code Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:42   ` Greg Kroah-Hartman
2021-12-07  7:42     ` Greg Kroah-Hartman
2021-12-07  7:42     ` Greg Kroah-Hartman
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 04/23] genirq/msi: Remove unused domain callbacks Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27 ` [patch V2 05/23] genirq/msi: Fixup includes Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:43   ` Greg Kroah-Hartman
2021-12-07  7:43     ` Greg Kroah-Hartman
2021-12-07  7:43     ` Greg Kroah-Hartman
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 06/23] PCI/MSI: Make pci_msi_domain_write_msg() static Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07 20:54   ` Bjorn Helgaas
2021-12-07 20:54     ` Bjorn Helgaas
2021-12-07 20:54     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 07/23] PCI/MSI: Remove msi_desc_to_pci_sysdata() Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07 20:55   ` Bjorn Helgaas
2021-12-07 20:55     ` Bjorn Helgaas
2021-12-07 20:55     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 08/23] PCI/sysfs: Use pci_irq_vector() Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:43   ` Greg Kroah-Hartman
2021-12-07  7:43     ` Greg Kroah-Hartman
2021-12-07  7:43     ` Greg Kroah-Hartman
2021-12-07 20:56   ` Bjorn Helgaas
2021-12-07 20:56     ` Bjorn Helgaas
2021-12-07 20:56     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 09/23] MIPS: Octeon: Use arch_setup_msi_irq() Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 10/23] genirq/msi, treewide: Use a named struct for PCI/MSI attributes Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:44   ` Greg Kroah-Hartman
2021-12-07  7:44     ` Greg Kroah-Hartman
2021-12-07  7:44     ` Greg Kroah-Hartman
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 11/23] x86/hyperv: Refactor hv_msi_domain_free_irqs() Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 12/23] PCI/MSI: Make arch_restore_msi_irqs() less horrible Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07 20:56   ` Bjorn Helgaas
2021-12-07 20:56     ` Bjorn Helgaas
2021-12-07 20:56     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 13/23] PCI/MSI: Cleanup include zoo Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07 20:57   ` Bjorn Helgaas
2021-12-07 20:57     ` Bjorn Helgaas
2021-12-07 20:57     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 14/23] PCI/MSI: Make msix_update_entries() smarter Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:44   ` Greg Kroah-Hartman
2021-12-07  7:44     ` Greg Kroah-Hartman
2021-12-07  7:44     ` Greg Kroah-Hartman
2021-12-07 20:57   ` Bjorn Helgaas
2021-12-07 20:57     ` Bjorn Helgaas
2021-12-07 20:57     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 15/23] PCI/MSI: Move code into a separate directory Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07 20:57   ` Bjorn Helgaas
2021-12-07 20:57     ` Bjorn Helgaas
2021-12-07 20:57     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 16/23] PCI/MSI: Split out CONFIG_PCI_MSI independent part Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:45   ` Greg Kroah-Hartman
2021-12-07  7:45     ` Greg Kroah-Hartman
2021-12-07  7:45     ` Greg Kroah-Hartman
2021-12-07 20:58   ` Bjorn Helgaas
2021-12-07 20:58     ` Bjorn Helgaas
2021-12-07 20:58     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 17/23] PCI/MSI: Split out !IRQDOMAIN code Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:45   ` Greg Kroah-Hartman
2021-12-07  7:45     ` Greg Kroah-Hartman
2021-12-07  7:45     ` Greg Kroah-Hartman
2021-12-07 20:59   ` Bjorn Helgaas
2021-12-07 20:59     ` Bjorn Helgaas
2021-12-07 20:59     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 18/23] PCI/MSI: Split out irqdomain code Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:46   ` Greg Kroah-Hartman
2021-12-07  7:46     ` Greg Kroah-Hartman
2021-12-07  7:46     ` Greg Kroah-Hartman
2021-12-07 21:00   ` Bjorn Helgaas
2021-12-07 21:00     ` Bjorn Helgaas
2021-12-07 21:00     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 19/23] PCI/MSI: Sanitize MSIX table map handling Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07 21:01   ` Bjorn Helgaas
2021-12-07 21:01     ` Bjorn Helgaas
2021-12-07 21:01     ` Bjorn Helgaas
2021-12-09 16:07   ` [tip: irq/msi] PCI/MSI: Sanitize MSI-X " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 20/23] PCI/MSI: Move msi_lock to struct pci_dev Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:47   ` Greg Kroah-Hartman
2021-12-07  7:47     ` Greg Kroah-Hartman
2021-12-07  7:47     ` Greg Kroah-Hartman
2021-12-07 21:01   ` Bjorn Helgaas
2021-12-07 21:01     ` Bjorn Helgaas
2021-12-07 21:01     ` Bjorn Helgaas
2021-12-08 15:29   ` Jason Gunthorpe
2021-12-08 15:29     ` Jason Gunthorpe
2021-12-08 15:29     ` Jason Gunthorpe
2021-12-08 20:56     ` Thomas Gleixner
2021-12-08 20:56       ` Thomas Gleixner
2021-12-08 20:56       ` Thomas Gleixner
2021-12-09 16:06   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 21/23] PCI/MSI: Make pci_msi_domain_check_cap() static Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:47   ` Greg Kroah-Hartman
2021-12-07  7:47     ` Greg Kroah-Hartman
2021-12-07  7:47     ` Greg Kroah-Hartman
2021-12-07 21:01   ` Bjorn Helgaas
2021-12-07 21:01     ` Bjorn Helgaas
2021-12-07 21:01     ` Bjorn Helgaas
2021-12-09 16:06   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:27 ` [patch V2 22/23] genirq/msi: Handle PCI/MSI allocation fail in core code Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-06 22:27   ` Thomas Gleixner
2021-12-07  7:48   ` Greg Kroah-Hartman
2021-12-07  7:48     ` Greg Kroah-Hartman
2021-12-07  7:48     ` Greg Kroah-Hartman
2021-12-07 21:02   ` Bjorn Helgaas
2021-12-07 21:02     ` Bjorn Helgaas
2021-12-07 21:02     ` Bjorn Helgaas
2021-12-09 16:06   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner
2021-12-06 22:28 ` [patch V2 23/23] PCI/MSI: Move descriptor counting on allocation fail to the legacy code Thomas Gleixner
2021-12-06 22:28   ` Thomas Gleixner
2021-12-06 22:28   ` Thomas Gleixner
2021-12-07  7:48   ` Greg Kroah-Hartman
2021-12-07  7:48     ` Greg Kroah-Hartman
2021-12-07  7:48     ` Greg Kroah-Hartman
2021-12-07 21:02   ` Bjorn Helgaas
2021-12-07 21:02     ` Bjorn Helgaas
2021-12-07 21:02     ` Bjorn Helgaas
2021-12-09 16:06   ` [tip: irq/msi] " tip-bot2 for Thomas Gleixner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211206210147.872865823@linutronix.de \
    --to=tglx@linutronix.de \
    --cc=alex.williamson@redhat.com \
    --cc=ashok.raj@intel.com \
    --cc=ath11k@lists.infradead.org \
    --cc=benh@kernel.crashing.org \
    --cc=borntraeger@de.ibm.com \
    --cc=clg@kaod.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=hca@linux.ibm.com \
    --cc=helgaas@kernel.org \
    --cc=jgg@nvidia.com \
    --cc=jgross@suse.com \
    --cc=kevin.tian@intel.com \
    --cc=kvalo@codeaurora.org \
    --cc=linux-hyperv@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=maz@kernel.org \
    --cc=megha.dey@intel.com \
    --cc=mpe@ellerman.id.au \
    --cc=paulus@samba.org \
    --cc=sparclinux@vger.kernel.org \
    --cc=tsbogend@alpha.franken.de \
    --cc=wei.liu@kernel.org \
    --cc=x86@kernel.org \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.