summaryrefslogtreecommitdiff
path: root/sys/kern/kern_subr.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2002-02-11 20:37:54 +0000
committerJulian Elischer <julian@FreeBSD.org>2002-02-11 20:37:54 +0000
commit2c1007663f7b2510876141963e4485447946c089 (patch)
tree91fc1230622927515e2c60360059682b64d84592 /sys/kern/kern_subr.c
parent7146f7f11587d841b165e2213d805d107dcefa64 (diff)
Notes
Diffstat (limited to 'sys/kern/kern_subr.c')
-rw-r--r--sys/kern/kern_subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_subr.c b/sys/kern/kern_subr.c
index 250077c7d311..9f2ede2d4c95 100644
--- a/sys/kern/kern_subr.c
+++ b/sys/kern/kern_subr.c
@@ -388,7 +388,7 @@ uio_yield()
td = curthread;
mtx_lock_spin(&sched_lock);
DROP_GIANT();
- td->td_ksegrp->kg_pri.pri_level = td->td_ksegrp->kg_pri.pri_user;
+ td->td_priority = td->td_ksegrp->kg_user_pri; /* XXXKSE */
setrunqueue(td);
td->td_proc->p_stats->p_ru.ru_nivcsw++;
mi_switch();