]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
autofs4: fix invalid ioctl return in autofs4_root_ioctl_unlocked()
authorIan Kent <raven@themaw.net>
Tue, 9 Feb 2016 23:13:38 +0000 (10:13 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 9 Feb 2016 23:13:38 +0000 (10:13 +1100)
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>
fs/autofs4/root.c

index 101879ed764ca0f3cb073f71c33396fb277db9e9..aa8228eb104b8fe7f47eea1f36de730daa003d5c 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;
        }
 }