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 442843AFB01 for ; Tue, 12 May 2026 14:18:20 +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=1778595500; cv=none; b=IUIvdSSXsVp5zuYUAf5D7dg2fUubvVhC3gRnLRChYfKE1WpY8/vppg5fdd332j9wS/FbfHC6JiVsNQGNlTHLB9Ux2yfN0vmMDXHBAH44qwgtR0zOfQSP3LiMW/9wQICs50jE9kjoC0PpKMuI0abeVTWM4K2P1q0Y+YFEM7glyyE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778595500; c=relaxed/simple; bh=rgARlOx1efisJiWR5P9jvW+F+NH/a8dd9cT8HoVvPbE=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=Vcyb8szmXxfGD6o7AtXAnanU4C5w/BaKl9P2neEbY9YIPcVFlNldpPYpJlKOYZ7TIpaNxgZ2bsclsWg3kFymm41y6gQWG7fWMURz2fO6R2ns+NmhW0cVav/vbjuCIjSC09jwPaSpBhw9UFsyUVd/r3wco/9FTqFX41qsIv/2gK4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=rUQGuN7O; 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="rUQGuN7O" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CEDBAC2BCB0; Tue, 12 May 2026 14:18:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778595500; bh=rgARlOx1efisJiWR5P9jvW+F+NH/a8dd9cT8HoVvPbE=; h=Subject:To:Cc:From:Date:From; b=rUQGuN7OMMldAUrODsEaQqcs/2cEmMV+nqPAO4aDFt+V8AAfl1UuTIUFRl+MjPRg+ NzxDau4OiQDLE1DUYEViC9TlTR0f4S/E40xK5+RpHqKcxKQpvqks6zF4xiFm7sqGsG AtweADoKk5bCBmuwnI9w4LxeQjCU1KIr2uMuPYDU= Subject: FAILED: patch "[PATCH] power: supply: cw2015: Free allocated workqueue" failed to apply to 5.10-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:14:25 +0200 Message-ID: <2026051225-only-mud-e4d7@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 5.10-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-5.10.y git checkout FETCH_HEAD git cherry-pick -x db254b0b232358ab1aeadebe8d147c99a3569559 # git commit -s git send-email --to '' --in-reply-to '2026051225-only-mud-e4d7@gregkh' --subject-prefix 'PATCH 5.10.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;