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 1A8C03B42F9; Tue, 21 Jul 2026 20:43: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=1784666595; cv=none; b=JABvgq+XyY/vMfKwxB3yXkDPSmG4d8qIoez5rg8pUTsgJL5dmFl/kPw/fLg+F6+jlhe2ggbbdf9la/A5Yu74sF7qE0fsS5rmj13XVr8NrahcRbeeCK78WJlyyxQ7vjp/LLuOqdRvsACuu6+uD6A2pAuAvoo5fvGdGg0gM/WDe2s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784666595; c=relaxed/simple; bh=HuoKtNKMG5VqMEHOfLz1nBPjEreh+Pq/2FX2QWAOXkU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=apot5wn+YbOcVbCPCo51F/4BSF0WuYniM8yP9u2DPBW5qbzGT9xFsumVys2QiW8Y1SngQf2wubfiTtHfktEgQPkX/15V37YLilSydsadtqcLHJ5g729W7FYndCq1rvAbZ1WktTmoLgPELH5fgeEiUY2O3Ys3rMUxY9eLSqKxcP0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Izqh65Mc; 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="Izqh65Mc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7FA011F000E9; Tue, 21 Jul 2026 20:43:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784666594; bh=r+ZLFTsGDMagyzXBvV7Oz2Sl9CXpfyfUBetdBRISGWY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Izqh65McBdVewXf+10Ekz4UAyUCPfaGvYDOJBZucCdWHPYSQ6mY6ejyFGeNe0l65/ 5xkYGz5Mcubyee4AcYQiEZeTUJXY2+VbBsRjrE3LBgwkD4eAsAkrKHXG0NZrb6UMzM 50e0S2t9UmbI3nPIFJdeiK3RxI2gJYnomLO9/LQQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ricardo Neri , "Rafael J. Wysocki" , Sasha Levin Subject: [PATCH 6.6 0735/1266] thermal: intel: Fix dangling resources on thermal_throttle_online() failure Date: Tue, 21 Jul 2026 17:19:32 +0200 Message-ID: <20260721152458.321171450@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152441.786066624@linuxfoundation.org> References: <20260721152441.786066624@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 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ricardo Neri [ Upstream commit b91d287fa7a1ba0727eed5823c6ee4924ee5fa31 ] The function thermal_throttle_add_dev() may fail and abort a CPU hotplug online operation. Since the failure occurs within the online callback, thermal_throttle_online(), the CPU hotplug framework does not invoke the corresponding offline callback. As a result, the hardware and software resources set up during the failed operation are not torn down. Since only thermal_throttle_add_dev() can fail, call it before setting up the rest of the resources. Fixes: f6656208f04e ("x86/mce/therm_throt: Optimize notifications of thermal throttle") Signed-off-by: Ricardo Neri Link: https://patch.msgid.link/20260613-rneri-directed-therm-intr-v3-1-3a26d1e47fc8@linux.intel.com Signed-off-by: Rafael J. Wysocki Signed-off-by: Sasha Levin --- drivers/thermal/intel/therm_throt.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/thermal/intel/therm_throt.c b/drivers/thermal/intel/therm_throt.c index e69868e868eb9e..dfdc8c1b0eb5d3 100644 --- a/drivers/thermal/intel/therm_throt.c +++ b/drivers/thermal/intel/therm_throt.c @@ -528,8 +528,13 @@ static int thermal_throttle_online(unsigned int cpu) { struct thermal_state *state = &per_cpu(thermal_state, cpu); struct device *dev = get_cpu_device(cpu); + int err; u32 l; + err = thermal_throttle_add_dev(dev, cpu); + if (err) + return err; + state->package_throttle.level = PACKAGE_LEVEL; state->core_throttle.level = CORE_LEVEL; @@ -547,7 +552,7 @@ static int thermal_throttle_online(unsigned int cpu) l = apic_read(APIC_LVTTHMR); apic_write(APIC_LVTTHMR, l & ~APIC_LVT_MASKED); - return thermal_throttle_add_dev(dev, cpu); + return err; } static int thermal_throttle_offline(unsigned int cpu) -- 2.53.0