]> Zhao Yanbai Git Server - minix.git/commit
devman: allow multiple event read calls up to EOF 61/2861/1
authorDavid van Moolenbroek <david@minix3.org>
Tue, 28 Oct 2014 13:37:42 +0000 (13:37 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Tue, 28 Oct 2014 14:43:33 +0000 (14:43 +0000)
commit10b1b4ee12957aa183d2695f69673706886ec14f
treea56605fececc77e477653d29fe3c56de50390e2c
parente1c7263ee46456bfbff7b592e37c652ea8d2ba2c
devman: allow multiple event read calls up to EOF

Read calls may be repeated by VFS if the user destination memory is
not mapped in.  Devman currently assumes that all reads are
successful, and uses this to track whether EOF has been reached for
a particular event, discarding it as soon as this happens.  Upon
repetition, this may result in lost events for devmand.

With this patch, devman discards events only once devmand reads the
EOF marker, which itself can never generate a user page fault.  The
result is that read calls for data can be repeated safely, without
the risk of losing events in the process.

Change-Id: I9dfdf7f8c8992a20a10302d79c3506e61f8564b0
minix/servers/devman/device.c