From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id ECAFC43231F; Mon, 17 Aug 2026 14:38:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786977496; cv=none; b=qpKbiJcI7RIDSKb80jjhL1Aof5vswyLn+tEmPR0gCpkOQiVR1d/V3J+n1AtYOL/W6sravCh2KNtSF+bt/2oJqlkZBQI73FNUpJuh3TTLH7+hpJi+mQHhkx4trBMwKKuZfhU5vkraJtCtYc+2md0S5briulD5HrNlsw16ERTiPrQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786977496; c=relaxed/simple; bh=QR4iM1i6jLChqGBonQ5Z9jxUk+aa10ZasXPPU70onVs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=HW/GbsdaF/iODt2OO6J6mfb/xFJ7MojwVv5joSBBsqEB+TLfxZcpX0vR8BlpojeOeQnMKVdeZeRpIEiUoQFE0kAIGU++iLDYu/zk6jLZUkpg7X8I7yAyU1v28CsN1x6dMT4CcAZBTBD4DVunNk/kmO6JpBnEzutKEztGriXPaBs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=yx0FcstA; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="yx0FcstA" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 536061F000E9; Mon, 17 Aug 2026 14:38:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786977494; bh=kTxpOXp847+pUugiOQhS4fg8/ccqlW2d1krsnnEuzDc=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=yx0FcstAhyEHyjbGXGPdaiYTIyLBtECZyrYRG2O3jmo3QMfpKljac3F522Uc0PM31 WkavIJM89WM810j2RPwQvkWuM3m0ELm/kFfw+OAI3hrVDcLEuaHB1R20BViIjiZNh3 TLm6viM2L+s0MU0bKGObv6Mlhj9QJ/oTvWVB1U0c= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Guangshuo Li , Vincent Mailhol , stable@kernel.org, Marc Kleine-Budde Subject: [PATCH 5.15 348/456] can: etas_es58x: es58x_read_bulk_callback(): fix RX buffer leak on URB resubmit failure Date: Mon, 17 Aug 2026 15:32:18 +0200 Message-ID: <20260817132553.168183601@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132539.792407575@linuxfoundation.org> References: <20260817132539.792407575@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Guangshuo Li commit 7a0cf2b2497c757c3cb1286eddf2986abb0d387b upstream. es58x_read_bulk_callback() resubmits the RX URB after processing a received packet. If the resubmit succeeds, the URB remains anchored and will be handled by the normal RX path or by teardown. However, if usb_submit_urb() fails, the callback unanchors the URB and then returns directly. This skips the existing free_urb path, so the coherent transfer buffer allocated with usb_alloc_coherent() is not released. Reuse the existing free_urb path after a resubmit failure so that the RX coherent buffer is freed before leaving the callback. Fixes: 5eaad4f76826 ("can: usb: etas_es58x: correctly anchor the urb in the read bulk callback") Signed-off-by: Guangshuo Li Reviewed-by: Vincent Mailhol Link: https://patch.msgid.link/20260706014601.415445-1-lgs201920130244@gmail.com Cc: stable@kernel.org Signed-off-by: Marc Kleine-Budde Signed-off-by: Greg Kroah-Hartman --- drivers/net/can/usb/etas_es58x/es58x_core.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/net/can/usb/etas_es58x/es58x_core.c +++ b/drivers/net/can/usb/etas_es58x/es58x_core.c @@ -1481,7 +1481,6 @@ static void es58x_read_bulk_callback(str dev_err_ratelimited(dev, "Failed resubmitting read bulk urb: %pe\n", ERR_PTR(ret)); - return; free_urb: usb_free_coherent(urb->dev, urb->transfer_buffer_length,