HID: hiddev: fix nonblocking read semantics wrt EIO/ERESTARTSYS
authorJiri Kosina <jkosina@suse.cz>
Tue, 27 Nov 2012 23:10:44 +0000 (00:10 +0100)
committerJiri Kosina <jkosina@suse.cz>
Tue, 27 Nov 2012 23:10:44 +0000 (00:10 +0100)
When the file has been open in non-blocking mode, EIO or ERESTARTSYS
would never be returned even if they should (for example when device
has been unplugged, you want EIO and not EAGAIN to be returned).

Move the O_NONBLOCK check after other checks have been performed.

Base on similar patch done to hidraw by
Founder Fang <founder.fang@gmail.com>

Signed-off-by: Jiri Kosina <jkosina@suse.cz>

No differences found