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 F2B1D3AFAF4 for ; Tue, 12 May 2026 14:27:32 +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=1778596053; cv=none; b=U6JrtFB/wl2WapHSGfd4MdDLqRL+wQhaCJjJZgumFVAKyiR+iEN7UFQo7wWkXyOz0ugm8mkUN2wUYMwt+gxj2ClY3tDAtfLVJei1uYmpAxq4+WN2ohPSjRbgXIPGS+H26zwtrc62GWxfK3CV4pzVDOXFPfmMIOD3M0IP3xwknkc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778596053; c=relaxed/simple; bh=Zm232W24cB+32mmawEm3UmNAILn+zpr7u+7kWVsgcRo=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=APpYk6PWOPfEXcqrlb8nqBgNOIISMCSNYoz1QD22suxmXVfB0cpHsk/7h3EdHuMwBcvAwZHs1F8ZqcuyIKBiX+mqpmvRsLQrhOqtcTrEKuS88e+FMilhZqM1iQ4tUuzfX+gnQHjno7Lrn1gjRycMmZT6w4akh0QB45HvI9KQgwU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=xKxfsOXb; 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="xKxfsOXb" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 876CDC2BCB0; Tue, 12 May 2026 14:27:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778596052; bh=Zm232W24cB+32mmawEm3UmNAILn+zpr7u+7kWVsgcRo=; h=Subject:To:Cc:From:Date:From; b=xKxfsOXbHOiEJFBsOjgRiS9IoqdIrG6e2rbDn64IwdGP60PrsBDUFOnK/k2ZZqADk v8A6S2hlnMnv90P4swTt4VhB4+GY1w2CruH/kloB9QmDps4hn+q05Dtp5zr+57We9n qKyqTNVPmGv5EQj5UB92Tgx7liqtFnbFvZwfkNFc= Subject: FAILED: patch "[PATCH] power: supply: cw2015: Free allocated workqueue" failed to apply to 6.1-stable tree To: krzysztof.kozlowski@oss.qualcomm.com,andriy.shevchenko@linux.intel.com,sebastian.reichel@collabora.com Cc: From: Date: Tue, 12 May 2026 16:27:25 +0200 Message-ID: <2026051225-aspect-letdown-34ee@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.1-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.1.y git checkout FETCH_HEAD git cherry-pick -x db254b0b232358ab1aeadebe8d147c99a3569559 # git commit -s git send-email --to '' --in-reply-to '2026051225-aspect-letdown-34ee@gregkh' --subject-prefix 'PATCH 6.1.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From db254b0b232358ab1aeadebe8d147c99a3569559 Mon Sep 17 00:00:00 2001 From: Krzysztof Kozlowski Date: Thu, 5 Mar 2026 22:45:41 +0100 Subject: [PATCH] power: supply: cw2015: Free allocated workqueue Use devm interface so allocated workqueue will be freed during device removal and error paths, thus fixing a memory leak. Change is not equivalent in the workqueue itself: use non-legacy API which does not set (__WQ_LEGACY | WQ_MEM_RECLAIM). The workqueue is used to read updated data from the battery, thus there is no point to run it for memory reclaim. Cc: stable@vger.kernel.org Fixes: b4c7715c10c1 ("power: supply: add CellWise cw2015 fuel gauge driver") Signed-off-by: Krzysztof Kozlowski Reviewed-by: Andy Shevchenko Link: https://patch.msgid.link/20260305-workqueue-devm-v2-2-66a38741c652@oss.qualcomm.com Signed-off-by: Sebastian Reichel diff --git a/drivers/power/supply/cw2015_battery.c b/drivers/power/supply/cw2015_battery.c index a05dcc4a48f2..286524d2318c 100644 --- a/drivers/power/supply/cw2015_battery.c +++ b/drivers/power/supply/cw2015_battery.c @@ -694,7 +694,8 @@ static int cw_bat_probe(struct i2c_client *client) "No monitored battery, some properties will be missing\n"); } - cw_bat->battery_workqueue = create_singlethread_workqueue("rk_battery"); + cw_bat->battery_workqueue = devm_alloc_ordered_workqueue(&client->dev, + "rk_battery", 0); if (!cw_bat->battery_workqueue) return -ENOMEM;