summaryrefslogtreecommitdiffstats
path: root/sys/mips
diff options
context:
space:
mode:
authorattilio <attilio@FreeBSD.org>2011-05-31 21:22:44 +0000
committerattilio <attilio@FreeBSD.org>2011-05-31 21:22:44 +0000
commitbc4d32e80bd81ea96c4c2544ab36f7e8caa777b7 (patch)
treec72d5598fc48383e545ddbc1e8438d9245766ca9 /sys/mips
parent27825059cd2a1ad6c708ee2089f7e182c12e84b1 (diff)
downloadFreeBSD-src-bc4d32e80bd81ea96c4c2544ab36f7e8caa777b7.zip
FreeBSD-src-bc4d32e80bd81ea96c4c2544ab36f7e8caa777b7.tar.gz
MFC
Diffstat (limited to 'sys/mips')
-rw-r--r--sys/mips/mips/mp_machdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/mips/mips/mp_machdep.c b/sys/mips/mips/mp_machdep.c
index 8c93bd1..79a3476 100644
--- a/sys/mips/mips/mp_machdep.c
+++ b/sys/mips/mips/mp_machdep.c
@@ -85,7 +85,7 @@ ipi_selected(cpuset_t cpus, int ipi)
{
struct pcpu *pc;
- SLIST_FOREACH(pc, &cpuhead, pc_allcpu) {
+ STAILQ_FOREACH(pc, &cpuhead, pc_allcpu) {
if (CPU_OVERLAP(&cpus, &pc->pc_cpumask)) {
CTR3(KTR_SMP, "%s: pc: %p, ipi: %x\n", __func__, pc,
ipi);
OpenPOWER on IntegriCloud