linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] PCI fixes for v5.15
@ 2021-09-17 15:18 Bjorn Helgaas
  2021-09-17 18:46 ` Linus Torvalds
  2021-09-17 19:29 ` pr-tracker-bot
  0 siblings, 2 replies; 6+ messages in thread
From: Bjorn Helgaas @ 2021-09-17 15:18 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-pci, linux-kernel, Lorenzo Pieralisi, Evan Quan,
	Alex Deucher, Jean-Philippe Brucker, Nirmal Patel, Jon Derrick,
	Dave Jones, Heiner Kallweit

The following changes since commit 6880fa6c56601bb8ed59df6c30fd390cc5f6dd8f:

  Linux 5.15-rc1 (2021-09-12 16:28:37 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git tags/pci-v5.15-fixes-1

for you to fetch changes up to e042a4533fc346a655de7f1b8ac1fa01a2ed96e5:

  MAINTAINERS: Add Nirmal Patel as VMD maintainer (2021-09-15 16:44:03 -0500)

----------------------------------------------------------------
PCI fixes:

  - Defer VPD sizing until we actually need the contents; fixes a
    boot-time slowdown reported by Dave Jones (Bjorn Helgaas)

  - Stop clobbering OF fwnodes when we look for an ACPI fwnode; fixes
    a virtio-iommu boot regression (Jean-Philippe Brucker)

  - Add AMD GPU multi-function power dependencies; fixes runtime power
    management, including GPU resume and temp and fan sensor issues
    (Evan Quan)

  - Update VMD maintainer to Nirmal Patel (Jon Derrick)

----------------------------------------------------------------
Bjorn Helgaas (1):
      PCI/VPD: Defer VPD sizing until first access

Evan Quan (1):
      PCI: Add AMD GPU multi-function power dependencies

Jean-Philippe Brucker (1):
      PCI/ACPI: Don't reset a fwnode set by OF

Jon Derrick (1):
      MAINTAINERS: Add Nirmal Patel as VMD maintainer

 MAINTAINERS            |  3 ++-
 drivers/pci/pci-acpi.c |  2 +-
 drivers/pci/quirks.c   |  9 +++++++--
 drivers/pci/vpd.c      | 36 ++++++++++++++++++++++++++----------
 4 files changed, 36 insertions(+), 14 deletions(-)

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

* Re: [GIT PULL] PCI fixes for v5.15
  2021-09-17 15:18 [GIT PULL] PCI fixes for v5.15 Bjorn Helgaas
@ 2021-09-17 18:46 ` Linus Torvalds
  2021-09-17 19:16   ` Bjorn Helgaas
  2021-09-17 19:29 ` pr-tracker-bot
  1 sibling, 1 reply; 6+ messages in thread
From: Linus Torvalds @ 2021-09-17 18:46 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: Linux PCI, Linux Kernel Mailing List, Lorenzo Pieralisi,
	Evan Quan, Alex Deucher, Jean-Philippe Brucker, Nirmal Patel,
	Jon Derrick, Dave Jones, Heiner Kallweit

On Fri, Sep 17, 2021 at 8:18 AM Bjorn Helgaas <helgaas@kernel.org> wrote:
>
>   - Defer VPD sizing until we actually need the contents; fixes a
>     boot-time slowdown reported by Dave Jones (Bjorn Helgaas)

This commit should have had the Reported-by: and Tested-by: tags from
Dave Jones.

Yes, it has the link to discussion and report, but for basic credits
people shouldn't have to go to some web browser.

Pulled, but I wanted to point out how bug reporting and testing is a
fundamental part of commit logs, not some secondary thing.

          Linus

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

* Re: [GIT PULL] PCI fixes for v5.15
  2021-09-17 18:46 ` Linus Torvalds
@ 2021-09-17 19:16   ` Bjorn Helgaas
  0 siblings, 0 replies; 6+ messages in thread
From: Bjorn Helgaas @ 2021-09-17 19:16 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Linux PCI, Linux Kernel Mailing List, Lorenzo Pieralisi,
	Evan Quan, Alex Deucher, Jean-Philippe Brucker, Nirmal Patel,
	Jon Derrick, Dave Jones, Heiner Kallweit

On Fri, Sep 17, 2021 at 11:46:00AM -0700, Linus Torvalds wrote:
> On Fri, Sep 17, 2021 at 8:18 AM Bjorn Helgaas <helgaas@kernel.org> wrote:
> >
> >   - Defer VPD sizing until we actually need the contents; fixes a
> >     boot-time slowdown reported by Dave Jones (Bjorn Helgaas)
> 
> This commit should have had the Reported-by: and Tested-by: tags from
> Dave Jones.
> 
> Yes, it has the link to discussion and report, but for basic credits
> people shouldn't have to go to some web browser.

Right, sorry about that.

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

* Re: [GIT PULL] PCI fixes for v5.15
  2021-09-17 15:18 [GIT PULL] PCI fixes for v5.15 Bjorn Helgaas
  2021-09-17 18:46 ` Linus Torvalds
@ 2021-09-17 19:29 ` pr-tracker-bot
  1 sibling, 0 replies; 6+ messages in thread
From: pr-tracker-bot @ 2021-09-17 19:29 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: Linus Torvalds, linux-pci, linux-kernel, Lorenzo Pieralisi,
	Evan Quan, Alex Deucher, Jean-Philippe Brucker, Nirmal Patel,
	Jon Derrick, Dave Jones, Heiner Kallweit

The pull request you sent on Fri, 17 Sep 2021 10:18:42 -0500:

> git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git tags/pci-v5.15-fixes-1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/7639afad8b8d6671a645fb3d6e6fd1432dcdf6ac

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* Re: [GIT PULL] PCI fixes for v5.15
  2021-10-15 19:52 Bjorn Helgaas
@ 2021-10-16 16:23 ` pr-tracker-bot
  0 siblings, 0 replies; 6+ messages in thread
From: pr-tracker-bot @ 2021-10-16 16:23 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: Linus Torvalds, linux-pci, linux-kernel, Lorenzo Pieralisi,
	Wang Hai, Barry Song, Hulk Robot

The pull request you sent on Fri, 15 Oct 2021 14:52:08 -0500:

> git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git pci-v5.15-fixes-2

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/5a7ee55b1fcd23ebdb740fde9f4d795fff1b7443

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* [GIT PULL] PCI fixes for v5.15
@ 2021-10-15 19:52 Bjorn Helgaas
  2021-10-16 16:23 ` pr-tracker-bot
  0 siblings, 1 reply; 6+ messages in thread
From: Bjorn Helgaas @ 2021-10-15 19:52 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-pci, linux-kernel, Lorenzo Pieralisi, Wang Hai, Barry Song,
	Hulk Robot

The following changes since commit e4e737bb5c170df6135a127739a9e6148ee3da82:

  Linux 5.15-rc2 (2021-09-19 17:28:22 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git pci-v5.15-fixes-2

for you to fetch changes up to 2b94b6b79b7c24092a6169db9e83c4565be0db42:

  PCI/MSI: Handle msi_populate_sysfs() errors correctly (2021-10-12 20:32:58 -0500)

----------------------------------------------------------------
PCI fixes:

  - Don't save msi_populate_sysfs() error code as dev->msi_irq_groups
    so we don't dereference the error code as a pointer (Wang Hai)

----------------------------------------------------------------
Wang Hai (1):
      PCI/MSI: Handle msi_populate_sysfs() errors correctly

 drivers/pci/msi.c | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

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

end of thread, other threads:[~2021-10-16 16:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-17 15:18 [GIT PULL] PCI fixes for v5.15 Bjorn Helgaas
2021-09-17 18:46 ` Linus Torvalds
2021-09-17 19:16   ` Bjorn Helgaas
2021-09-17 19:29 ` pr-tracker-bot
2021-10-15 19:52 Bjorn Helgaas
2021-10-16 16:23 ` 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;
as well as URLs for NNTP newsgroup(s).