mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
Input: uinput - mark as non-seekable
Seeking does not make sense for uinput so let's use nonseekable_open to mark the device non-seekable. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
0b7024ac4d
commit
daf8a96b2d
@ -290,6 +290,7 @@ static int uinput_open(struct inode *inode, struct file *file)
|
||||
newdev->state = UIST_NEW_DEVICE;
|
||||
|
||||
file->private_data = newdev;
|
||||
nonseekable_open(inode, file);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user