aboutsummaryrefslogtreecommitdiffstats
path: root/fs/compat_ioctl.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2019-04-21 19:03:29 -0400
committerArnd Bergmann <arnd@arndb.de>2019-10-23 17:15:56 +0200
commitee26025f585cc158f257248b6454d10cdaf830a7 (patch)
treee69f1fff16c14ceb9a79cb746fddc7a4aed4b4f7 /fs/compat_ioctl.c
parentfix compat handling of FICLONERANGE, FIDEDUPERANGE and FS_IOC_FIEMAP (diff)
downloadlinux-dev-ee26025f585cc158f257248b6454d10cdaf830a7.tar.xz
linux-dev-ee26025f585cc158f257248b6454d10cdaf830a7.zip
FIGETBSZ: fix compat
it takes a pointer argument, regular file or no regular file Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'fs/compat_ioctl.c')
-rw-r--r--fs/compat_ioctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c
index e0226b2138d6..a979b7d1ed90 100644
--- a/fs/compat_ioctl.c
+++ b/fs/compat_ioctl.c
@@ -1036,10 +1036,10 @@ COMPAT_SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd,
case FICLONERANGE:
case FIDEDUPERANGE:
case FS_IOC_FIEMAP:
+ case FIGETBSZ:
goto found_handler;
case FIBMAP:
- case FIGETBSZ:
case FIONREAD:
if (S_ISREG(file_inode(f.file)->i_mode))
break;