mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 22:21:21 +00:00
bkl: Remove locked .ioctl file operation
The last user is gone, so we can safely remove this Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: John Kacur <jkacur@redhat.com> Cc: Al Viro <viro@ZenIV.linux.org.uk> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
This commit is contained in:
parent
c6d7ba8b12
commit
b19dd42faf
7 changed files with 13 additions and 51 deletions
|
@ -55,12 +55,6 @@ static unsigned int bad_file_poll(struct file *filp, poll_table *wait)
|
|||
return POLLERR;
|
||||
}
|
||||
|
||||
static int bad_file_ioctl (struct inode *inode, struct file *filp,
|
||||
unsigned int cmd, unsigned long arg)
|
||||
{
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
static long bad_file_unlocked_ioctl(struct file *file, unsigned cmd,
|
||||
unsigned long arg)
|
||||
{
|
||||
|
@ -159,7 +153,6 @@ static const struct file_operations bad_file_ops =
|
|||
.aio_write = bad_file_aio_write,
|
||||
.readdir = bad_file_readdir,
|
||||
.poll = bad_file_poll,
|
||||
.ioctl = bad_file_ioctl,
|
||||
.unlocked_ioctl = bad_file_unlocked_ioctl,
|
||||
.compat_ioctl = bad_file_compat_ioctl,
|
||||
.mmap = bad_file_mmap,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue