commit: 7617cf4a5b2ad10825dd602fc59864c82a6c3ded Author: Mike Pagano <mpagano <AT> gentoo <DOT> org> AuthorDate: Mon Jul 15 11:15:25 2024 +0000 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org> CommitDate: Mon Jul 15 11:15:25 2024 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=7617cf4a
Linux patch 6.6.40 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org> 0000_README | 4 ++++ 1039_linux-6.6.40.patch | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/0000_README b/0000_README index 974c1f33..851873fc 100644 --- a/0000_README +++ b/0000_README @@ -199,6 +199,10 @@ Patch: 1038_linux-6.6.39.patch From: https://www.kernel.org Desc: Linux 6.6.39 +Patch: 1039_linux-6.6.40.patch +From: https://www.kernel.org +Desc: Linux 6.6.40 + Patch: 1510_fs-enable-link-security-restrictions-by-default.patch From: http://sources.debian.net/src/linux/3.16.7-ckt4-3/debian/patches/debian/fs-enable-link-security-restrictions-by-default.patch Desc: Enable link security restrictions by default. diff --git a/1039_linux-6.6.40.patch b/1039_linux-6.6.40.patch new file mode 100644 index 00000000..48ba9027 --- /dev/null +++ b/1039_linux-6.6.40.patch @@ -0,0 +1,37 @@ +diff --git a/Makefile b/Makefile +index 5ba70f0649f3c..c844130774569 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 6 + PATCHLEVEL = 6 +-SUBLEVEL = 39 ++SUBLEVEL = 40 + EXTRAVERSION = + NAME = Hurr durr I'ma ninja sloth + +diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c +index 592dabc785152..8dd85221cd927 100644 +--- a/drivers/usb/host/xhci-ring.c ++++ b/drivers/usb/host/xhci-ring.c +@@ -2649,17 +2649,16 @@ static int handle_tx_event(struct xhci_hcd *xhci, + else + xhci_handle_halted_endpoint(xhci, ep, NULL, + EP_SOFT_RESET); +- break; ++ goto cleanup; + case COMP_RING_UNDERRUN: + case COMP_RING_OVERRUN: + case COMP_STOPPED_LENGTH_INVALID: +- break; ++ goto cleanup; + default: + xhci_err(xhci, "ERROR Transfer event for unknown stream ring slot %u ep %u\n", + slot_id, ep_index); + goto err_out; + } +- return 0; + } + + /* Count current td numbers if ep->skip is set */
