aboutsummaryrefslogtreecommitdiffstats
path: root/arch/riscv/kernel/smp.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2019-08-21 23:58:35 +0900
committerPaul Walmsley <paul.walmsley@sifive.com>2019-09-05 01:51:57 -0700
commitf5bf645d10f2c6cc85294021af70f2b7bcc42d8e (patch)
treeafdd6f6025388e64799a7b652306e823bb3e4473 /arch/riscv/kernel/smp.c
parentriscv: optimize send_ipi_single (diff)
downloadlinux-dev-f5bf645d10f2c6cc85294021af70f2b7bcc42d8e.tar.xz
linux-dev-f5bf645d10f2c6cc85294021af70f2b7bcc42d8e.zip
riscv: cleanup riscv_cpuid_to_hartid_mask
Move the initial clearing of the mask from the callers to riscv_cpuid_to_hartid_mask, and remove the unused !CONFIG_SMP stub. 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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/riscv/kernel/smp.c b/arch/riscv/kernel/smp.c
index a3715d621f60..3836760d7aaf 100644
--- a/arch/riscv/kernel/smp.c
+++ b/arch/riscv/kernel/smp.c
@@ -56,6 +56,7 @@ void riscv_cpuid_to_hartid_mask(const struct cpumask *in, struct cpumask *out)
{
int cpu;
+ cpumask_clear(out);
for_each_cpu(cpu, in)
cpumask_set_cpu(cpuid_to_hartid_map(cpu), out);
}