diff options
author | Dmitry Chagin <dchagin@FreeBSD.org> | 2023-01-29 13:18:17 +0000 |
---|---|---|
committer | Dmitry Chagin <dchagin@FreeBSD.org> | 2023-02-06 19:06:31 +0000 |
commit | cbe75c6d77147026a75f56f3332f2f849d359c0b (patch) | |
tree | 9089d4aa90b76e1982b3dc1183b27617fd33f3eb | |
parent | 69e8cea385db64f86ccd3e9a2ab6ff61c5976f64 (diff) |
subr_smp: Trim trailing whitespaces.
MFC after: 1 week
(cherry picked from commit e4754c80366dcbc28e625efab5cfe84057784c19)
-rw-r--r-- | sys/kern/subr_smp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index c83e05a4d87a..7b250aeccc56 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -125,11 +125,11 @@ static void (*volatile smp_rv_teardown_func)(void *arg); static void *volatile smp_rv_func_arg; static volatile int smp_rv_waiters[4]; -/* +/* * Shared mutex to restrict busywaits between smp_rendezvous() and * smp(_targeted)_tlb_shootdown(). A deadlock occurs if both of these * functions trigger at once and cause multiple CPUs to busywait with - * interrupts disabled. + * interrupts disabled. */ struct mtx smp_ipi_mtx; @@ -334,7 +334,7 @@ suspend_cpus(cpuset_t map) #endif /* - * Called by a CPU to restart stopped CPUs. + * Called by a CPU to restart stopped CPUs. * * Usually (but not necessarily) called with 'stopped_cpus' as its arg. * @@ -437,7 +437,7 @@ resume_cpus(cpuset_t map) #undef X86 /* - * All-CPU rendezvous. CPUs are signalled, all execute the setup function + * All-CPU rendezvous. CPUs are signalled, all execute the setup function * (if specified), rendezvous, execute the action function (if specified), * rendezvous again, execute the teardown function (if specified), and then * resume. |