OSDN Git Service

autofs4: fix invalid ioctl return in autofs4_root_ioctl_unlocked()
authorIan Kent <raven@themaw.net>
Tue, 15 Mar 2016 21:58:33 +0000 (14:58 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 15 Mar 2016 23:55:16 +0000 (16:55 -0700)
The return from an ioctl if an invalid ioctl is passed in should be
EINVAL not ENOSYS.

Signed-off-by: Ian Kent <raven@themaw.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/autofs4/root.c

index 101879e..aa8228e 100644 (file)
@@ -914,7 +914,7 @@ static int autofs4_root_ioctl_unlocked(struct inode *inode, struct file *filp,
                                            filp->f_path.mnt, sbi, p);
 
        default:
-               return -ENOSYS;
+               return -EINVAL;
        }
 }