aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/coretemp
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2021-07-30 03:16:22 +0000
committerAlexander Motin <mav@FreeBSD.org>2021-07-30 03:26:10 +0000
commit74f80bc1af2ffd56ec290f610c80e46f768731a0 (patch)
treef9d506e6c53f77b92a1c3e9b628ee5399645be64 /sys/dev/coretemp
parent6f179693c5c4509a10eb76732dc98a7d01b0582f (diff)
downloadsrc-74f80bc1af2ffd56ec290f610c80e46f768731a0.tar.gz
src-74f80bc1af2ffd56ec290f610c80e46f768731a0.zip
coretemp(4): Switch to smp_rendezvous_cpus().
Use of smp_rendezvous_cpus() instead of sched_bind() allows to not block indefinitely if target CPU is running some thread with higher priority, while all we need is single rdmsr/wrmsr instruction call. I guess it should also be much cheaper than full thread migration. MFC after: 2 weeks Sponsored by: iXsystems, Inc.
Diffstat (limited to 'sys/dev/coretemp')
-rw-r--r--sys/dev/coretemp/coretemp.c59
1 files changed, 37 insertions, 22 deletions
diff --git a/sys/dev/coretemp/coretemp.c b/sys/dev/coretemp/coretemp.c
index 884ed6309f0e..53a2434254f6 100644
--- a/sys/dev/coretemp/coretemp.c
+++ b/sys/dev/coretemp/coretemp.c
@@ -42,7 +42,7 @@ __FBSDID("$FreeBSD$");
#include <sys/module.h>
#include <sys/mutex.h>
#include <sys/proc.h> /* for curthread */
-#include <sys/sched.h>
+#include <sys/smp.h>
#include <sys/sysctl.h>
#include <sys/systm.h>
@@ -310,14 +310,32 @@ coretemp_detach(device_t dev)
return (0);
}
+struct coretemp_args {
+ u_int msr;
+ uint64_t val;
+};
+
+static void
+coretemp_rdmsr(void *arg)
+{
+ struct coretemp_args *args = arg;
+
+ args->val = rdmsr(args->msr);
+}
+
+static void
+coretemp_wrmsr(void *arg)
+{
+ struct coretemp_args *args = arg;
+
+ wrmsr(args->msr, args->val);
+}
+
static uint64_t
coretemp_get_thermal_msr(int cpu)
{
- uint64_t msr;
-
- thread_lock(curthread);
- sched_bind(curthread, cpu);
- thread_unlock(curthread);
+ struct coretemp_args args;
+ cpuset_t cpus;
/*
* The digital temperature reading is located at bit 16
@@ -329,27 +347,24 @@ coretemp_get_thermal_msr(int cpu)
* The temperature is computed by subtracting the temperature
* reading by Tj(max).
*/
- msr = rdmsr(MSR_THERM_STATUS);
-
- thread_lock(curthread);
- sched_unbind(curthread);
- thread_unlock(curthread);
-
- return (msr);
+ args.msr = MSR_THERM_STATUS;
+ CPU_SETOF(cpu, &cpus);
+ smp_rendezvous_cpus(cpus, smp_no_rendezvous_barrier, coretemp_rdmsr,
+ smp_no_rendezvous_barrier, &args);
+ return (args.val);
}
static void
coretemp_clear_thermal_msr(int cpu)
{
- thread_lock(curthread);
- sched_bind(curthread, cpu);
- thread_unlock(curthread);
-
- wrmsr(MSR_THERM_STATUS, 0);
-
- thread_lock(curthread);
- sched_unbind(curthread);
- thread_unlock(curthread);
+ struct coretemp_args args;
+ cpuset_t cpus;
+
+ args.msr = MSR_THERM_STATUS;
+ args.val = 0;
+ CPU_SETOF(cpu, &cpus);
+ smp_rendezvous_cpus(cpus, smp_no_rendezvous_barrier, coretemp_wrmsr,
+ smp_no_rendezvous_barrier, &args);
}
static int