mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
Input: mark input interfaces as non-seekable
Seeking does not make sense for input interfaces such as evdev and joydev so let's use nonseekable_open to mark them non-seekable. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
daf8a96b2d
commit
3d7bbd4575
@ -278,6 +278,8 @@ static int evdev_open(struct inode *inode, struct file *file)
|
||||
goto err_free_client;
|
||||
|
||||
file->private_data = client;
|
||||
nonseekable_open(inode, file);
|
||||
|
||||
return 0;
|
||||
|
||||
err_free_client:
|
||||
|
@ -286,6 +286,8 @@ static int joydev_open(struct inode *inode, struct file *file)
|
||||
goto err_free_client;
|
||||
|
||||
file->private_data = client;
|
||||
nonseekable_open(inode, file);
|
||||
|
||||
return 0;
|
||||
|
||||
err_free_client:
|
||||
|
Loading…
Reference in New Issue
Block a user