summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_smp.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>2003-04-10 17:35:44 +0000
committerjulian <julian@FreeBSD.org>2003-04-10 17:35:44 +0000
commit6f175a0e20cb55d7b1c3f882e3f1ecbd0503a094 (patch)
treea36a5c6a854637e4e73e7256b937922489d07ddb /sys/kern/subr_smp.c
parent2a488098e335f6345e9235190cdc78fa82e9d61f (diff)
downloadFreeBSD-src-6f175a0e20cb55d7b1c3f882e3f1ecbd0503a094.zip
FreeBSD-src-6f175a0e20cb55d7b1c3f882e3f1ecbd0503a094.tar.gz
Move the _oncpu entry from the KSE to the thread.
The entry in the KSE still exists but it's purpose will change a bit when we add the ability to lock a KSE to a cpu.
Diffstat (limited to 'sys/kern/subr_smp.c')
-rw-r--r--sys/kern/subr_smp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c
index f65987f..897e0f0 100644
--- a/sys/kern/subr_smp.c
+++ b/sys/kern/subr_smp.c
@@ -142,7 +142,7 @@ forward_signal(struct thread *td)
if (td == curthread)
return;
- id = td->td_kse->ke_oncpu;
+ id = td->td_oncpu;
if (id == NOCPU)
return;
ipi_selected(1 << id, IPI_AST);
OpenPOWER on IntegriCloud