]> Zhao Yanbai Git Server - minix.git/commit
VFS: set w_task only when needed 42/942/2
authorThomas Veerman <thomas@minix3.org>
Sat, 24 Aug 2013 10:23:41 +0000 (12:23 +0200)
committerLionel Sambuc <lionel@minix3.org>
Tue, 18 Feb 2014 10:25:02 +0000 (11:25 +0100)
commit7d02ecdbb4a138f349e05f8bdcf5ad9e6685b25e
treec014df9a599e574e593dd8e49bdddbb09e146f6a
parentcfd3379bb1a183dd1bde0b190f2c94a9e0223fa9
VFS: set w_task only when needed

It was always set, but not always cleared, when talking to asynchronous
drivers. This could cause erratic behavior upon a driver crash.

Normally, a worker thread's w_task field is set when it's about to
communicate with a driver or FS. Then upon receiving a reply we can
do sanity checks (that the thread we want to wake up was actually
waiting for a reply). Also, when a driver/FS crashes, we can identify
which worker threads were talking to the crashed endpoint and handle
the error gracefully.

Asynchronous drivers are a bit special, though. In most cases, the
sender of the request is not interested in the reply (the sender was
suspended and only wants to know whether the request was successfully
caried out or not). However, the open request is special, as the reply
carries information needed by the sender. This is the only request
where a worker thread actually yields and waits for the result. This is
also the only case where we're interested in setting w_task for
asynchronous drivers.

Change-Id: Ia1ce2747937df376122b5e13b6a069de27fcc379
servers/vfs/device.c