hwmon: (fam15h_power) Use topology_core_id()
authorThomas Gleixner <tglx@linutronix.de>
Mon, 14 Aug 2023 08:18:33 +0000 (10:18 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 10 Oct 2023 12:38:17 +0000 (14:38 +0200)
Use the provided topology helper function instead of fiddling in cpu_data.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Tested-by: Juergen Gross <jgross@suse.com>
Tested-by: Sohil Mehta <sohil.mehta@intel.com>
Tested-by: Michael Kelley <mikelley@microsoft.com>
Tested-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Tested-by: Zhang Rui <rui.zhang@intel.com>
Acked-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/20230814085112.506988471@linutronix.de
drivers/hwmon/fam15h_power.c

index 521534d5c1e5f786668a33b9deb28718d76d99b0..6307112c2c0c61528cd5d6af929c7b85144792ba 100644 (file)
@@ -17,6 +17,7 @@
 #include <linux/cpumask.h>
 #include <linux/time.h>
 #include <linux/sched.h>
+#include <linux/topology.h>
 #include <asm/processor.h>
 #include <asm/msr.h>
 
@@ -134,15 +135,13 @@ static DEVICE_ATTR_RO(power1_crit);
 static void do_read_registers_on_cu(void *_data)
 {
        struct fam15h_power_data *data = _data;
-       int cpu, cu;
-
-       cpu = smp_processor_id();
+       int cu;
 
        /*
         * With the new x86 topology modelling, cpu core id actually
         * is compute unit id.
         */
-       cu = cpu_data(cpu).cpu_core_id;
+       cu = topology_core_id(smp_processor_id());
 
        rdmsrl_safe(MSR_F15H_CU_PWR_ACCUMULATOR, &data->cu_acc_power[cu]);
        rdmsrl_safe(MSR_F15H_PTSC, &data->cpu_sw_pwr_ptsc[cu]);