public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] PCI fixes for v6.3
@ 2023-03-31 16:27 Bjorn Helgaas
  2023-03-31 20:14 ` pr-tracker-bot
  0 siblings, 1 reply; 6+ messages in thread
From: Bjorn Helgaas @ 2023-03-31 16:27 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-pci, linux-kernel, Lorenzo Pieralisi,
	Krzysztof Wilczyński, Yoshihiro Shimoda, Serge Semin

The following changes since commit fe15c26ee26efa11741a7b632e9f23b01aca4cc6:

  Linux 6.3-rc1 (2023-03-05 14:52:03 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git tags/pci-v6.3-fixes-1

for you to fetch changes up to cdce67099117ece371582f706c6eff7d3a65326d:

  PCI: dwc: Fix PORT_LINK_CONTROL update when CDM check enabled (2023-03-21 13:06:24 -0500)

----------------------------------------------------------------
- Fix DesignWare PORT_LINK_CONTROL setup, which was corrupted when the DT
  "snps,enable-cdm-check" property was present (Yoshihiro Shimoda)

----------------------------------------------------------------
Yoshihiro Shimoda (1):
      PCI: dwc: Fix PORT_LINK_CONTROL update when CDM check enabled

 drivers/pci/controller/dwc/pcie-designware.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [GIT PULL] PCI fixes for v6.3
@ 2023-04-11 18:42 Bjorn Helgaas
  2023-04-11 19:04 ` pr-tracker-bot
  0 siblings, 1 reply; 6+ messages in thread
From: Bjorn Helgaas @ 2023-04-11 18:42 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-pci, linux-kernel, Lorenzo Pieralisi,
	Krzysztof Wilczyński, Rob Herring, Jon Hunter,
	Kuppuswamy Sathyanarayanan, Basavaraj Natikar, Thomas Glanzmann,
	Mario Limonciello, Reinette Chatre, Arnd Bergmann

The following changes since commit fe15c26ee26efa11741a7b632e9f23b01aca4cc6:

  Linux 6.3-rc1 (2023-03-05 14:52:03 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git pci-v6.3-fixes-2

for you to fetch changes up to 30ba2d09edb5ea857a1473ae3d820911347ada62:

  PCI: Fix use-after-free in pci_bus_release_domain_nr() (2023-04-06 18:20:59 -0500)

----------------------------------------------------------------
- Provide pci_msix_can_alloc_dyn() stub when CONFIG_PCI_MSI unset to avoid
  build errors (Reinette Chatre)

- Quirk AMD XHCI controller that loses MSI-X state in D3hot to avoid broken
  USB after hotplug or suspend/resume (Basavaraj Natikar)

- Fix use-after-free in pci_bus_release_domain_nr() (Rob Herring)

----------------------------------------------------------------
Basavaraj Natikar (1):
      x86/PCI: Add quirk for AMD XHCI controller that loses MSI-X state in D3hot

Reinette Chatre (1):
      PCI/MSI: Provide missing stub for pci_msix_can_alloc_dyn()

Rob Herring (1):
      PCI: Fix use-after-free in pci_bus_release_domain_nr()

 arch/x86/pci/fixup.c | 21 +++++++++++++++++++++
 drivers/pci/remove.c |  5 +++--
 include/linux/pci.h  |  2 ++
 3 files changed, 26 insertions(+), 2 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [GIT PULL] PCI fixes for v6.3
@ 2023-04-20 20:27 Bjorn Helgaas
  2023-04-20 23:06 ` pr-tracker-bot
  0 siblings, 1 reply; 6+ messages in thread
From: Bjorn Helgaas @ 2023-04-20 20:27 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-pci, linux-kernel, Lorenzo Pieralisi,
	Krzysztof Wilczyński, Rob Herring, Donald Hunter,
	Binbin Zhou, Liu Peibao, Huacai Chen, Vitaly Kuznetsov,
	Myron Stowe, Rafael J. Wysocki, Andy Shevchenko

The following changes since commit fe15c26ee26efa11741a7b632e9f23b01aca4cc6:

  Linux 6.3-rc1 (2023-03-05 14:52:03 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git tags/pci-v6.3-fixes-3

for you to fetch changes up to 0d21e71a91debc87e88437a2cf9c6f34f8bf012f:

  PCI: Restrict device disabled status check to DT (2023-04-20 13:30:14 -0500)

This has only been in -next one day, but it fixes an important regression.
It appeared in next-20230420 as a0814a0e8b5b, and I subsequently edited the
commit log to add testing reports from Donald and Vitaly.

----------------------------------------------------------------
- Previously we ignored PCI devices if the DT "status" property or the ACPI
  _STA method said it was not present.  Per spec, _STA cannot be used for
  that purpose, and using it that way caused regressions, so skip the _STA
  check (Rob Herring)

----------------------------------------------------------------
Rob Herring (1):
      PCI: Restrict device disabled status check to DT

 drivers/pci/of.c    | 30 ++++++++++++++++++++++++------
 drivers/pci/pci.h   |  4 ++--
 drivers/pci/probe.c |  8 ++++----
 3 files changed, 30 insertions(+), 12 deletions(-)

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

end of thread, other threads:[~2023-04-20 23:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-31 16:27 [GIT PULL] PCI fixes for v6.3 Bjorn Helgaas
2023-03-31 20:14 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2023-04-11 18:42 Bjorn Helgaas
2023-04-11 19:04 ` pr-tracker-bot
2023-04-20 20:27 Bjorn Helgaas
2023-04-20 23:06 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox