[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <TYWP286MB2601183235622B29FAF707B5B1709@TYWP286MB2601.JPNP286.PROD.OUTLOOK.COM>
Date: Tue, 23 Aug 2022 15:43:42 +0800
From: Riwen Lu <luriwen@...mail.com>
To: rafael@...nel.org, rui.zhang@...el.com, lenb@...nel.org,
jeremy.linton@....com
Cc: linux-acpi@...r.kernel.org, linux-kernel@...r.kernel.org,
Riwen Lu <luriwen@...inos.cn>,
Jeremy Linton <Jeremy.Linton@....com>
Subject: [PATCH v1] ACPI: processor: Remove freq Qos request for all CPUs
From: Riwen Lu <luriwen@...inos.cn>
The freq Qos request would be removed repeatedly if the cpufreq policy
relates to more than one CPU. Then, it would cause the "called for unknown
object" warning.
Remove the freq Qos request for each CPU relates to the cpufreq policy,
instead of removing repeatedly for the last CPU of it.
Fixes: a1bb46c36ce3 ("ACPI: processor: Add QoS requests for all CPUs")
Reported-by: Jeremy Linton <Jeremy.Linton@....com>
Signed-off-by: Riwen Lu <luriwen@...inos.cn>
---
drivers/acpi/processor_thermal.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/acpi/processor_thermal.c b/drivers/acpi/processor_thermal.c
index db6ac540e924..e534fd49a67e 100644
--- a/drivers/acpi/processor_thermal.c
+++ b/drivers/acpi/processor_thermal.c
@@ -151,7 +151,7 @@ void acpi_thermal_cpufreq_exit(struct cpufreq_policy *policy)
unsigned int cpu;
for_each_cpu(cpu, policy->related_cpus) {
- struct acpi_processor *pr = per_cpu(processors, policy->cpu);
+ struct acpi_processor *pr = per_cpu(processors, cpu);
if (pr)
freq_qos_remove_request(&pr->thermal_req);
--
2.25.1
Powered by blists - more mailing lists