summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2004-01-07 23:00:20 +0000
committerjhb <jhb@FreeBSD.org>2004-01-07 23:00:20 +0000
commit4cf96d6b2fd5626bf05ce207adb5696e5da96cd7 (patch)
treed1c2bc0001458539481021c82b791766850ed357
parent3cbe4be8fa70c547a60cbddb53e5173fb866438c (diff)
downloadFreeBSD-src-4cf96d6b2fd5626bf05ce207adb5696e5da96cd7.zip
FreeBSD-src-4cf96d6b2fd5626bf05ce207adb5696e5da96cd7.tar.gz
Comsetic tweaks: use PCPU_GET(cpumask) and CPU_ABSENT().
Tested by: Dejan Lesjak <dejan.lesjak@ijs.si>
-rw-r--r--sys/alpha/alpha/mp_machdep.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/alpha/alpha/mp_machdep.c b/sys/alpha/alpha/mp_machdep.c
index b18c79c..d6d0dd6 100644
--- a/sys/alpha/alpha/mp_machdep.c
+++ b/sys/alpha/alpha/mp_machdep.c
@@ -351,7 +351,7 @@ cpu_mp_probe(void)
boot_cpu_id = PCPU_GET(cpuid);
KASSERT(boot_cpu_id == hwrpb->rpb_primary_cpu_id,
("cpu_mp_probe() called on non-primary CPU"));
- all_cpus = 1 << boot_cpu_id;
+ all_cpus = PCPU_GET(cpumask);
mp_ncpus = 1;
@@ -413,12 +413,12 @@ cpu_mp_start(void)
all_cpus |= (1 << i);
mp_ncpus++;
}
- PCPU_SET(other_cpus, all_cpus & ~(1 << boot_cpu_id));
+ PCPU_SET(other_cpus, all_cpus & ~PCPU_GET(cpumask));
for (i = 0; i < hwrpb->rpb_pcs_cnt; i++) {
if (i == boot_cpu_id)
continue;
- if (all_cpus & (1 << i))
+ if (!CPU_ABSENT(i))
smp_start_secondary(i);
}
}
@@ -476,7 +476,7 @@ ipi_all_but_self(u_int64_t ipi)
void
ipi_self(u_int64_t ipi)
{
- ipi_selected(1 << PCPU_GET(cpuid), ipi);
+ ipi_selected(PCPU_GET(cpumask), ipi);
}
/*
@@ -489,7 +489,7 @@ smp_handle_ipi(struct trapframe *frame)
u_int64_t ipi;
int cpumask;
- cpumask = 1 << PCPU_GET(cpuid);
+ cpumask = PCPU_GET(cpumask);
CTR1(KTR_SMP, "smp_handle_ipi(), ipis=%lx", ipis);
while (ipis) {
OpenPOWER on IntegriCloud