From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 076EC15813A for ; Sun, 19 Jan 2025 10:58:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E82EE07D4; Sun, 19 Jan 2025 10:58:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 20C95E07D4 for ; Sun, 19 Jan 2025 10:58:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 395AE341E1C for ; Sun, 19 Jan 2025 10:58:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C066115B5 for ; Sun, 19 Jan 2025 10:58:38 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1737284305.8f412a6587d59cd393cafc4d20f15de10c665038.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:6.1 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 0000_README 1125_linux-6.1.126.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 8f412a6587d59cd393cafc4d20f15de10c665038 X-VCS-Branch: 6.1 Date: Sun, 19 Jan 2025 10:58:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b51d8b6b-8de6-45b5-b2b5-a78fba079180 X-Archives-Hash: e8092b55546f78b0b9a61f54deb6d247 commit: 8f412a6587d59cd393cafc4d20f15de10c665038 Author: Mike Pagano gentoo org> AuthorDate: Sun Jan 19 10:58:25 2025 +0000 Commit: Mike Pagano gentoo org> CommitDate: Sun Jan 19 10:58:25 2025 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=8f412a65 Linux patch 6.1.125 Signed-off-by: Mike Pagano gentoo.org> 0000_README | 4 ++++ 1125_linux-6.1.126.patch | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) diff --git a/0000_README b/0000_README index 6cc84406..6d5ed926 100644 --- a/0000_README +++ b/0000_README @@ -547,6 +547,10 @@ Patch: 1124_linux-6.1.125.patch From: https://www.kernel.org Desc: Linux 6.1.125 +Patch: 1125_linux-6.1.126.patch +From: https://www.kernel.org +Desc: Linux 6.1.126 + Patch: 1500_XATTR_USER_PREFIX.patch From: https://bugs.gentoo.org/show_bug.cgi?id=470644 Desc: Support for namespace user.pax.* on tmpfs. diff --git a/1125_linux-6.1.126.patch b/1125_linux-6.1.126.patch new file mode 100644 index 00000000..def5ba64 --- /dev/null +++ b/1125_linux-6.1.126.patch @@ -0,0 +1,45 @@ +diff --git a/Makefile b/Makefile +index 9151052c19af2b..916ed3b66536e8 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 6 + PATCHLEVEL = 1 +-SUBLEVEL = 125 ++SUBLEVEL = 126 + EXTRAVERSION = + NAME = Curry Ramen + +diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c +index 1d71e8ef991967..e90ff21b7c5429 100644 +--- a/drivers/usb/host/xhci-pci.c ++++ b/drivers/usb/host/xhci-pci.c +@@ -571,6 +571,7 @@ static void xhci_pci_remove(struct pci_dev *dev) + pci_set_power_state(dev, PCI_D3hot); + } + ++#ifdef CONFIG_PM + /* + * In some Intel xHCI controllers, in order to get D3 working, + * through a vendor specific SSIC CONFIG register at offset 0x883c, +@@ -720,6 +721,7 @@ static void xhci_pci_shutdown(struct usb_hcd *hcd) + if (xhci->quirks & XHCI_SPURIOUS_WAKEUP) + pci_set_power_state(pdev, PCI_D3hot); + } ++#endif /* CONFIG_PM */ + + /*-------------------------------------------------------------------------*/ + +@@ -769,9 +771,11 @@ static struct pci_driver xhci_pci_driver = { + static int __init xhci_pci_init(void) + { + xhci_init_driver(&xhci_pci_hc_driver, &xhci_pci_overrides); ++#ifdef CONFIG_PM + xhci_pci_hc_driver.pci_suspend = xhci_pci_suspend; + xhci_pci_hc_driver.pci_resume = xhci_pci_resume; + xhci_pci_hc_driver.shutdown = xhci_pci_shutdown; ++#endif + return pci_register_driver(&xhci_pci_driver); + } + module_init(xhci_pci_init);