aboutsummaryrefslogtreecommitdiffstats
path: root/arch/riscv/kernel/smp.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2019-08-21 23:58:33 +0900
committerPaul Walmsley <paul.walmsley@sifive.com>2019-09-05 01:44:37 -0700
commit1db7a7ca5ac543d0e360d1e8a3dc10ce74b58027 (patch)
treea2ebd34ef27e433614b85e9b9ede45efde058232 /arch/riscv/kernel/smp.c
parentriscv: refactor the IPI code (diff)
downloadlinux-dev-1db7a7ca5ac543d0e360d1e8a3dc10ce74b58027.tar.xz
linux-dev-1db7a7ca5ac543d0e360d1e8a3dc10ce74b58027.zip
riscv: cleanup send_ipi_mask
Use the special barriers for atomic bitops to make the intention a little more clear, and use riscv_cpuid_to_hartid_mask instead of open coding it. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Atish Patra <atish.patra@wdc.com> Signed-off-by: Paul Walmsley <paul.walmsley@sifive.com>
Diffstat (limited to 'arch/riscv/kernel/smp.c')
-rw-r--r--arch/riscv/kernel/smp.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/arch/riscv/kernel/smp.c b/arch/riscv/kernel/smp.c
index 8cd730239613..2e21669aa068 100644
--- a/arch/riscv/kernel/smp.c
+++ b/arch/riscv/kernel/smp.c
@@ -80,17 +80,15 @@ static void ipi_stop(void)
static void send_ipi_mask(const struct cpumask *mask, enum ipi_message_type op)
{
- int cpuid, hartid;
struct cpumask hartid_mask;
+ int cpu;
- cpumask_clear(&hartid_mask);
- mb();
- for_each_cpu(cpuid, mask) {
- set_bit(op, &ipi_data[cpuid].bits);
- hartid = cpuid_to_hartid_map(cpuid);
- cpumask_set_cpu(hartid, &hartid_mask);
- }
- mb();
+ smp_mb__before_atomic();
+ for_each_cpu(cpu, mask)
+ set_bit(op, &ipi_data[cpu].bits);
+ smp_mb__after_atomic();
+
+ riscv_cpuid_to_hartid_mask(mask, &hartid_mask);
sbi_send_ipi(cpumask_bits(&hartid_mask));
}