From patchwork Tue Apr 11 18:42:27 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjorn Helgaas X-Patchwork-Id: 13208053 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E9E45C7619A for ; Tue, 11 Apr 2023 18:42:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229508AbjDKSmb (ORCPT ); Tue, 11 Apr 2023 14:42:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60952 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229481AbjDKSma (ORCPT ); Tue, 11 Apr 2023 14:42:30 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 442E8ED; Tue, 11 Apr 2023 11:42:30 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id D206762AE1; Tue, 11 Apr 2023 18:42:29 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F1214C433EF; Tue, 11 Apr 2023 18:42:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1681238549; bh=JO2yqbVvUl+G5u1FQlq1qzpv9f0fp/hLz6Ixw1ixQeQ=; h=Date:From:To:Cc:Subject:From; b=b/DRcx6mLKP8q7GXpd+v9EOZX7sW44uOpdNrpFAPqN6AQ0tkhgRpm6DKSx8JU0gIC CX05xqqtsgTiXLM04cF8Fa1vRLFeW29uJdxgXStcyCfvXMzyA8+P5Oj7lI6DRh9bxp iY4aD9FwrL0lIwDJ8ySblVXZPIoRsnGRi28bmc5/Pelb2xXUfdQ/2tG6761nA/Y3HR VzHt3K7QwRwM0xN1GZrHaJ8t2nDPXEqzbxsgYdTOkBvjfaOCOA5ZVGg7BZ8IoYiEqn tba7Ub6WhXAPUBTGZwm+w+4C/tBk7vKPZ4Xi+b2csbmtu6cVMznCVwqK3/JmyE6k9a r/cmqdLxISf6w== Date: Tue, 11 Apr 2023 13:42:27 -0500 From: Bjorn Helgaas To: Linus Torvalds Cc: linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Lorenzo Pieralisi , Krzysztof =?utf-8?q?Wilczy?= =?utf-8?q?=C5=84ski?= , Rob Herring , Jon Hunter , Kuppuswamy Sathyanarayanan , Basavaraj Natikar , Thomas Glanzmann , Mario Limonciello , Reinette Chatre , Arnd Bergmann Subject: [GIT PULL] PCI fixes for v6.3 Message-ID: <20230411184227.GA4167614@bhelgaas> MIME-Version: 1.0 Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org 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(-)