ACPI: CPPC: Fix remaining for_each_possible_cpu() to use online CPUs
authorSean V Kelley <skelley@nvidia.com>
Wed, 11 Feb 2026 21:22:54 +0000 (21:22 +0000)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 12 Feb 2026 11:43:01 +0000 (12:43 +0100)
commit56eb0c0ed345da7815274aa821a8546a073d7e97
treefd2c36e1c35e63e168d754818e3af4eb3ae8abe1
parentd84e173311c4f0b0300755e6445f3224d252eeed
ACPI: CPPC: Fix remaining for_each_possible_cpu() to use online CPUs

per_cpu(cpc_desc_ptr, cpu) object is initialized for only the online
CPUs via acpi_soft_cpu_online() --> __acpi_processor_start() -->
acpi_cppc_processor_probe().

However, send_pcc_cmd() and acpi_get_psd_map() still iterate over all
possible CPUs. In acpi_get_psd_map(), encountering an offline CPU
returns -EFAULT, causing cppc_cpufreq initialization to fail.

This breaks systems booted with "nosmt" or "nosmt=force".

Fix by using for_each_online_cpu() in both functions.

Fixes: 80b8286aeec0 ("ACPI / CPPC: support for batching CPPC requests")
Signed-off-by: Sean V Kelley <skelley@nvidia.com>
Link: https://patch.msgid.link/20260211212254.30190-1-skelley@nvidia.com
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/cppc_acpi.c