]> Zhao Yanbai Git Server - minix.git/commit
VFS: fix short select(2) timeouts 05/3105/1
authorDavid van Moolenbroek <david@minix3.org>
Wed, 16 Sep 2015 10:41:46 +0000 (10:41 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Wed, 16 Sep 2015 10:41:46 +0000 (10:41 +0000)
commitde95c84d3e86af34b5d3268c80e8f5b779620c76
tree635904554ef8c6b959495fffa7984296b8ad29a5
parentfefec20e6b14b5d9d661131b3ba3d43f40cc1590
VFS: fix short select(2) timeouts

Some select queries require a response from device drivers.  If a
select call is nonblocking (with a zero timeout), the response to
the caller may have to be deferred until all involved drivers have
responded to the initial query.  This is handled just fine.

However, if the select call has a timeout that is so short that it
triggers before all the involved drivers have responded, the
resulting alarm would be discarded, possibly resulting in the call
blocking forever.  This fix changes the alarm handler such that if
the alarm triggers too early, the select call is further handled
as though it was nonblocking.

This fix resolves a test77 deadlock on really slow systems.

Change-Id: Ib487c8fe436802c3e11c57355ae0c8480721f06e
minix/servers/vfs/select.c