]> Zhao Yanbai Git Server - minix.git/commit
VFS: remove FP_BLOCKED_ON_DOPEN 47/947/2
authorDavid van Moolenbroek <david@minix3.org>
Fri, 30 Aug 2013 11:00:44 +0000 (13:00 +0200)
committerLionel Sambuc <lionel@minix3.org>
Tue, 18 Feb 2014 10:25:03 +0000 (11:25 +0100)
commitc7fbafe1ad112827b81d7b17a49a6513d22ee062
tree0677d90d9dbd97f1e3aef3d773e2e28c385f2a58
parent784cdd4d072a73706f6c5332d82180cfdd1c2c5b
VFS: remove FP_BLOCKED_ON_DOPEN

These days, DEV_OPEN calls to character drivers block the calling
thread until completion or failure, and thus never return SUSPEND to
the caller. The same already applied to BDEV_OPEN calls to block
drivers. It has thus become impossible for a process to enter a state
of being blocked on a device open call.

There is currently no support for restarting device open calls to
restarted character drivers. This support was present in the _DOPEN
logic, but was already no longer triggering. In the future, this case
should be handled by the thread performing the open request.

Change-Id: I6cc1e7b4c9ed116c6ce160b315e6e060124dce00
commands/ps/ps.c
include/minix/procfs.h
servers/procfs/pid.c
servers/vfs/const.h
servers/vfs/device.c
servers/vfs/open.c
servers/vfs/pipe.c