]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
If a thread that is swapped out is made runnable, then the setrunnable()
authorjhb <jhb@FreeBSD.org>
Tue, 5 Aug 2008 20:02:31 +0000 (20:02 +0000)
committerjhb <jhb@FreeBSD.org>
Tue, 5 Aug 2008 20:02:31 +0000 (20:02 +0000)
commit8af56fb6875120edaae014a4cc547f5e14609a12
tree80c45ebfc07976bf62d8de55267fa69fa52fdc1d
parentbe95b0fe3c10d07ed8c0887e7695a358ee6a2e17
If a thread that is swapped out is made runnable, then the setrunnable()
routine wakes up proc0 so that proc0 can swap the thread back in.
Historically, this has been done by waking up proc0 directly from
setrunnable() itself via a wakeup().  When waking up a sleeping thread
that was swapped out (the usual case when waking proc0 since only sleeping
threads are eligible to be swapped out), this resulted in a bit of
recursion (e.g. wakeup() -> setrunnable() -> wakeup()).

With sleep queues having separate locks in 6.x and later, this caused a
spin lock LOR (sleepq lock -> sched_lock/thread lock -> sleepq lock).
An attempt was made to fix this in 7.0 by making the proc0 wakeup use
the ithread mechanism for doing the wakeup.  However, this required
grabbing proc0's thread lock to perform the wakeup.  If proc0 was asleep
elsewhere in the kernel (e.g. waiting for disk I/O), then this degenerated
into the same LOR since the thread lock would be some other sleepq lock.

Fix this by deferring the wakeup of the swapper until after the sleepq
lock held by the upper layer has been locked.  The setrunnable() routine
now returns a boolean value to indicate whether or not proc0 needs to be
woken up.  The end result is that consumers of the sleepq API such as
*sleep/wakeup, condition variables, sx locks, and lockmgr, have to wakeup
proc0 if they get a non-zero return value from sleepq_abort(),
sleepq_broadcast(), or sleepq_signal().

Discussed with: jeff
Glanced at by: sam
Tested by: Jurgen Weber  jurgen - ish com au
MFC after: 2 weeks
sys/kern/kern_condvar.c
sys/kern/kern_lock.c
sys/kern/kern_sig.c
sys/kern/kern_sx.c
sys/kern/kern_synch.c
sys/kern/kern_thread.c
sys/kern/subr_sleepqueue.c
sys/sys/proc.h
sys/sys/sleepqueue.h
sys/vm/vm_glue.c