From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 B3E5530C358; Wed, 3 Dec 2025 15:31:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764775875; cv=none; b=rlVWNNt7NNX/U21biG2bwz+A4Kh6rsT1wuZA45W/lnsc2JrK0OnkzTfOOGje2Vef7o28uOzFoxu2sUoREd5tFoSiesWt3Efg6ySM0MJjDCverRon8RPyJwExHY7RV5TRVsZSXZQU0ccXPBYUFyzGH05a6Sl38SW+8Yi7wbQ8clM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764775875; c=relaxed/simple; bh=N05xtMzIr49yucFi/zAppDKOGsVFOwceRTTK6mr7G+g=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KbvqqEsOAY75DONJ3/EetfkVf1kN7LCjK54v4de9GXXUevM328N2QQGLi6OOGdkFF1/feRfFJaCswBznDoBJv7FK3HgxcCpaIzhCboZSJRHd+6oxfc3DPAzk+PhpUnCm+uNJk9EdD3ykMz6M1xGuurVzb8uvJR5gg6OVYDwejm8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=u6r4gBx6; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="u6r4gBx6" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B962DC116C6; Wed, 3 Dec 2025 15:31:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1764775875; bh=N05xtMzIr49yucFi/zAppDKOGsVFOwceRTTK6mr7G+g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=u6r4gBx68xORxwGfuUNWsqckUZaeGl/QHwKKqR0JGRKMix9lHPODY/payfLqk9iUm 0Td1dfAfetUHi3sLbpRlyi8L3oTL8S6ldpvUkY0ye+dN8+bRbGSNYVQ+hFVXy3W0+K pBoj9pGeNZVyNwTRPaZYWMhcfSyOg9nOESz2bu0g= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jeff Johnson , Loic Poulain , Baochen Qiang , Sasha Levin Subject: [PATCH 5.10 014/300] wifi: ath10k: Fix memory leak on unsupported WMI command Date: Wed, 3 Dec 2025 16:23:38 +0100 Message-ID: <20251203152400.986109663@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251203152400.447697997@linuxfoundation.org> References: <20251203152400.447697997@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.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Loic Poulain [ Upstream commit 2e9c1da4ee9d0acfca2e0a3d78f3d8cb5802da1b ] ath10k_wmi_cmd_send takes ownership of the passed buffer (skb) and has the responsibility to release it in case of error. This patch fixes missing free in case of early error due to unhandled WMI command ID. Tested-on: WCN3990 hw1.0 WLAN.HL.3.3.7.c2-00931-QCAHLSWMTPLZ-1 Fixes: 553215592f14 ("ath10k: warn if give WMI command is not supported") Suggested-by: Jeff Johnson Signed-off-by: Loic Poulain Reviewed-by: Baochen Qiang Link: https://patch.msgid.link/20250926195656.187970-1-loic.poulain@oss.qualcomm.com Signed-off-by: Jeff Johnson Signed-off-by: Sasha Levin --- drivers/net/wireless/ath/ath10k/wmi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c index c9a74f3e2e601..6293dbc32bde4 100644 --- a/drivers/net/wireless/ath/ath10k/wmi.c +++ b/drivers/net/wireless/ath/ath10k/wmi.c @@ -1936,6 +1936,7 @@ int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, u32 cmd_id) if (cmd_id == WMI_CMD_UNSUPPORTED) { ath10k_warn(ar, "wmi command %d is not supported by firmware\n", cmd_id); + dev_kfree_skb_any(skb); return ret; } -- 2.51.0