aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/sched_ule.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-07-03 16:57:51 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-07-03 16:57:51 +0000
commit279f949ee5d1e252d2fcded5c0e4d5caee6c4c03 (patch)
tree7955c259147dc98fdf4d05cf12b4f273d595f00b /sys/kern/sched_ule.c
parentbffd1b7af45538af1aafc6b6520cb37c8df6fa22 (diff)
downloadsrc-279f949ee5d1e252d2fcded5c0e4d5caee6c4c03.tar.gz
src-279f949ee5d1e252d2fcded5c0e4d5caee6c4c03.zip
Add NULL arg to mi_switch() call to stop kernel compiles from breaking.
Notes
Notes: svn path=/head/; revision=131527
Diffstat (limited to 'sys/kern/sched_ule.c')
-rw-r--r--sys/kern/sched_ule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/sched_ule.c b/sys/kern/sched_ule.c
index 889037d37d9a..7eb82186fc3f 100644
--- a/sys/kern/sched_ule.c
+++ b/sys/kern/sched_ule.c
@@ -1716,7 +1716,7 @@ sched_bind(struct thread *td, int cpu)
kseq_load_rem(KSEQ_CPU(ke->ke_cpu), ke);
kseq_notify(ke, cpu);
/* When we return from mi_switch we'll be on the correct cpu. */
- mi_switch(SW_VOL);
+ mi_switch(SW_VOL, NULL);
#endif
}