All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] forward MSIx vector enable error code in pci_alloc_irq_vectors_affinity
@ 2020-06-02  9:16 ` Piotr Stankiewicz
  0 siblings, 0 replies; 81+ messages in thread
From: Piotr Stankiewicz @ 2020-06-02  9:16 UTC (permalink / raw)
  To: Bjorn Helgaas, Jonathan Corbet, Jens Axboe, Kurt Schwemmer,
	Logan Gunthorpe, Antoine Tenart, Herbert Xu, David S . Miller,
	Gustavo Pimentel, Dan Williams, Vinod Koul, Alex Deucher,
	Christian König, David Zhou, David Airlie, Daniel Vetter,
	Dennis Dalessandro, Mike Marciniszyn, Doug Ledford,
	Jason Gunthorpe, Mauro Carvalho Chehab, Arnd Bergmann,
	Greg Kroah-Hartman, Adrian Hunter, Ulf Hansson, Tom Lendacky,
	Jakub Kicinski, Igor Russkikh, Yisen Zhuang, Salil Mehta,
	Brian King, James E . J . Bottomley, Martin K . Petersen,
	Jim Gill, VMware PV-Drivers
  Cc: linux-pci, linux-doc, linux-crypto, dmaengine, amd-gfx,
	dri-devel, linux-rdma, linux-media, linux-mmc, netdev,
	linux-scsi, linux-kernel, Piotr Stankiewicz

The primary objective of this patch series is to change the behaviour
of pci_alloc_irq_vectors_affinity such that it forwards the MSI-X enable
error code when appropriate. In the process, though, it was pointed out
that there are multiple places in the kernel which check/ask for message
signalled interrupts (MSI or MSI-X), which spawned the first patch adding
PCI_IRQ_MSI_TYPES. Finally the rest of the chain converts all users to
take advantage of PCI_IRQ_MSI_TYPES or PCI_IRQ_ALL_TYPES, as
appropriate.

Piotr Stankiewicz (15):
  PCI: add shorthand define for message signalled interrupt types
  PCI/MSI: forward MSIx vector enable error code in
    pci_alloc_irq_vectors_affinity
  PCI: use PCI_IRQ_MSI_TYPES where appropriate
  ahci: use PCI_IRQ_MSI_TYPES where appropriate
  crypto: inside-secure - use PCI_IRQ_MSI_TYPES where appropriate
  dmaengine: dw-edma: use PCI_IRQ_MSI_TYPES  where appropriate
  drm/amdgpu: use PCI_IRQ_MSI_TYPES where appropriate
  IB/qib: Use PCI_IRQ_MSI_TYPES where appropriate
  media: ddbridge: use PCI_IRQ_MSI_TYPES where appropriate
  vmw_vmci: use PCI_IRQ_ALL_TYPES where appropriate
  mmc: sdhci: use PCI_IRQ_MSI_TYPES where appropriate
  amd-xgbe: use PCI_IRQ_MSI_TYPES where appropriate
  aquantia: atlantic: use PCI_IRQ_ALL_TYPES where appropriate
  net: hns3: use PCI_IRQ_MSI_TYPES where appropriate
  scsi: use PCI_IRQ_MSI_TYPES and PCI_IRQ_ALL_TYPES where appropriate

 Documentation/PCI/msi-howto.rst                           | 5 +++--
 drivers/ata/ahci.c                                        | 2 +-
 drivers/crypto/inside-secure/safexcel.c                   | 2 +-
 drivers/dma/dw-edma/dw-edma-pcie.c                        | 2 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c                   | 8 ++++----
 drivers/infiniband/hw/qib/qib_pcie.c                      | 2 +-
 drivers/media/pci/ddbridge/ddbridge-main.c                | 2 +-
 drivers/misc/vmw_vmci/vmci_guest.c                        | 3 +--
 drivers/mmc/host/sdhci-pci-gli.c                          | 3 +--
 drivers/mmc/host/sdhci-pci-o2micro.c                      | 3 +--
 drivers/net/ethernet/amd/xgbe/xgbe-pci.c                  | 2 +-
 drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c      | 4 +---
 drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c   | 3 +--
 drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c | 2 +-
 drivers/pci/msi.c                                         | 4 ++--
 drivers/pci/pcie/portdrv_core.c                           | 4 ++--
 drivers/pci/switch/switchtec.c                            | 3 +--
 drivers/scsi/ipr.c                                        | 2 +-
 drivers/scsi/vmw_pvscsi.c                                 | 2 +-
 include/linux/pci.h                                       | 4 ++--
 20 files changed, 28 insertions(+), 34 deletions(-)

-- 
2.17.2


^ permalink raw reply	[flat|nested] 81+ messages in thread

end of thread, other threads:[~2020-06-30 22:04 UTC | newest]

Thread overview: 81+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-02  9:16 [PATCH 00/15] forward MSIx vector enable error code in pci_alloc_irq_vectors_affinity Piotr Stankiewicz
2020-06-02  9:16 ` Piotr Stankiewicz
2020-06-02  9:16 ` Piotr Stankiewicz
2020-06-02 23:06 ` Bjorn Helgaas
2020-06-02 23:06   ` Bjorn Helgaas
2020-06-03 11:42   ` [PATCH v2 00/15] Forward MSI-X vector enable error code in pci_alloc_irq_vectors_affinity() Piotr Stankiewicz
2020-06-03 11:42     ` Piotr Stankiewicz
2020-06-03 11:44     ` [PATCH v2 01/15] PCI/MSI: " Piotr Stankiewicz
2020-06-03 15:48       ` Logan Gunthorpe
2020-06-03 16:04         ` Stankiewicz, Piotr
2020-06-03 16:22           ` Logan Gunthorpe
2020-06-09  9:27             ` Stankiewicz, Piotr
2020-06-03 11:45     ` [PATCH v2 02/15] PCI: Add shorthand define for message signalled interrupt types Piotr Stankiewicz
2020-06-03 11:45       ` Piotr Stankiewicz
2020-06-03 15:49       ` Logan Gunthorpe
2020-06-03 15:49         ` Logan Gunthorpe
2020-06-04  1:55       ` Luben Tuikov
2020-06-04  1:55         ` Luben Tuikov
2020-06-03 11:46     ` [PATCH v2 03/15] PCI: Use PCI_IRQ_MSI_TYPES where appropriate Piotr Stankiewicz
2020-06-03 11:47     ` [PATCH v2 04/15] ahci: " Piotr Stankiewicz
2020-06-03 11:47     ` [PATCH v2 05/15] crypto: inside-secure - " Piotr Stankiewicz
2020-06-03 13:30       ` kernel test robot
2020-06-03 13:30         ` kernel test robot
2020-06-03 11:47     ` [PATCH v2 06/15] dmaengine: dw-edma: " Piotr Stankiewicz
2020-06-03 11:54       ` Gustavo Pimentel
2020-06-03 11:47     ` [PATCH v2 07/15] drm/amdgpu: " Piotr Stankiewicz
2020-06-03 11:47       ` Piotr Stankiewicz
2020-06-03 11:47       ` Piotr Stankiewicz
2020-06-03 13:43       ` Alex Deucher
2020-06-03 13:43         ` Alex Deucher
2020-06-03 13:43         ` Alex Deucher
2020-06-03 11:48     ` [PATCH v2 08/15] IB/qib: " Piotr Stankiewicz
2020-06-03 11:48     ` [PATCH v2 09/15] media: ddbridge: " Piotr Stankiewicz
2020-06-03 11:48     ` [PATCH v2 10/15] vmw_vmci: Use PCI_IRQ_ALL_TYPES " Piotr Stankiewicz
2020-06-03 11:49     ` [PATCH v2 11/15] mmc: sdhci: Use PCI_IRQ_MSI_TYPES " Piotr Stankiewicz
2020-06-03 11:49     ` [PATCH v2 12/15] amd-xgbe: " Piotr Stankiewicz
2020-06-03 11:49     ` [PATCH v2 13/15] aquantia: atlantic: Use PCI_IRQ_ALL_TYPES " Piotr Stankiewicz
2020-06-03 11:49     ` [PATCH v2 14/15] net: hns3: Use PCI_IRQ_MSI_TYPES " Piotr Stankiewicz
2020-06-03 11:50     ` [PATCH v2 15/15] scsi: Use PCI_IRQ_MSI_TYPES and PCI_IRQ_ALL_TYPES " Piotr Stankiewicz
2020-06-09  9:11     ` [PATCH v3 00/15] Forward MSI-X vector enable error code in pci_alloc_irq_vectors_affinity() Piotr Stankiewicz
2020-06-09  9:11       ` Piotr Stankiewicz
2020-06-09  9:11       ` Piotr Stankiewicz
2020-06-09  9:14       ` [PATCH v3 01/15] PCI/MSI: " Piotr Stankiewicz
2020-06-09 15:49         ` Logan Gunthorpe
2020-06-09 15:49         ` Christoph Hellwig
2020-06-09  9:15       ` [PATCH v3 02/15] PCI: Add macro for message signalled interrupt types Piotr Stankiewicz
2020-06-09  9:15         ` Piotr Stankiewicz
2020-06-09  9:16       ` [PATCH v3 03/15] PCI: Use PCI_IRQ_MSI_TYPES where appropriate Piotr Stankiewicz
2020-06-09 15:51         ` Christoph Hellwig
2020-06-09 16:31           ` Stankiewicz, Piotr
2020-06-09 16:35           ` Logan Gunthorpe
2020-06-09  9:17       ` [PATCH v3 04/15] ahci: " Piotr Stankiewicz
2020-06-09  9:17       ` [PATCH v3 05/15] crypto: inside-secure - " Piotr Stankiewicz
2020-06-09  9:17       ` [PATCH v3 06/15] dmaengine: dw-edma: " Piotr Stankiewicz
2020-06-09 10:01         ` Andy Shevchenko
2020-06-09  9:18       ` [PATCH v3 07/15] drm/amdgpu: " Piotr Stankiewicz
2020-06-09  9:18         ` Piotr Stankiewicz
2020-06-09  9:18         ` Piotr Stankiewicz
2020-06-09 20:23         ` Alex Deucher
2020-06-09 20:23           ` Alex Deucher
2020-06-09 20:23           ` Alex Deucher
2020-06-16  7:49           ` Stankiewicz, Piotr
2020-06-16  7:49             ` Stankiewicz, Piotr
2020-06-16  7:49             ` Stankiewicz, Piotr
2020-06-16  8:42           ` [PATCH] drm/amdgpu: Simplify IRQ vector request logic Piotr Stankiewicz
2020-06-16  8:42             ` Piotr Stankiewicz
2020-06-16  8:42             ` Piotr Stankiewicz
2020-06-09  9:18       ` [PATCH v3 08/15] IB/qib: Use PCI_IRQ_MSI_TYPES where appropriate Piotr Stankiewicz
2020-06-11 13:17         ` Ruhl, Michael J
2020-06-09  9:18       ` [PATCH v3 09/15] media: ddbridge: " Piotr Stankiewicz
2020-06-09  9:19       ` [PATCH v3 10/15] vmw_vmci: Use PCI_IRQ_ALL_TYPES " Piotr Stankiewicz
2020-06-09  9:19       ` [PATCH v3 11/15] mmc: sdhci: Use PCI_IRQ_MSI_TYPES " Piotr Stankiewicz
2020-06-09  9:19       ` [PATCH v3 12/15] amd-xgbe: " Piotr Stankiewicz
2020-06-09  9:19       ` [PATCH v3 13/15] aquantia: atlantic: Use PCI_IRQ_ALL_TYPES " Piotr Stankiewicz
2020-06-09  9:20       ` [PATCH v3 14/15] net: hns3: Use PCI_IRQ_MSI_TYPES " Piotr Stankiewicz
2020-06-09  9:20       ` [PATCH v3 15/15] scsi: Use PCI_IRQ_MSI_TYPES and PCI_IRQ_ALL_TYPES " Piotr Stankiewicz
2020-06-09 16:22       ` [PATCH v3 02/15] PCI: Add macro for message signalled interrupt types Piotr Stankiewicz
2020-06-10  7:08         ` Christoph Hellwig
2020-06-16  7:39           ` Stankiewicz, Piotr
2020-06-16  7:33       ` [PATCH v4] PCI/MSI: Forward MSI-X vector enable error code in pci_alloc_irq_vectors_affinity() Piotr Stankiewicz
2020-06-30 22:04         ` Bjorn Helgaas

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.