]> Zhao Yanbai Git Server - minix.git/commit
RS: clean up dead services during shutdown 02/3102/2
authorDavid van Moolenbroek <david@minix3.org>
Sat, 5 Sep 2015 06:01:33 +0000 (08:01 +0200)
committerDavid van Moolenbroek <david@minix3.org>
Wed, 16 Sep 2015 15:31:29 +0000 (15:31 +0000)
commite3f3566e337a8e42174b9d9f00f053206af94db2
tree54cc029b14e014701157479a36df7c8def25c9ce
parent1aa4eb6a851eed667e25554ab646497870da7d22
RS: clean up dead services during shutdown

Previously, RS would clean up dead services only when it is idle.
During shutdown, all services are marked with the 'exiting' flag,
and these flags lead RS to conclude it is not idle.  Therefore, at
shutdown time, no services were cleaned up anymore, leading to
deadlock situations.  For example, VFS could end up waiting for a
service that was already dead, or one driver could end up waiting
for an interrupt on a line shared with another dead driver.

While it may be possible to ignore RS_EXITING when checking idle
status, other flags may have the same ultimate effect.  Therefore,
this patch skips the idle check altogether when in shutdown mode.

Change-Id: I071fa9545da1d43c5e5c2e0bc2b6c173e3bb57c3
minix/servers/rs/utility.c