diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-04-22 02:03:29 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2019-10-23 18:15:56 +0300 |
commit | ee26025f585cc158f257248b6454d10cdaf830a7 (patch) | |
tree | e69f1fff16c14ceb9a79cb746fddc7a4aed4b4f7 | |
parent | 6b2daec19094a90435abe67d16fb43b1a5527254 (diff) | |
download | linux-ee26025f585cc158f257248b6454d10cdaf830a7.tar.xz |
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>
-rw-r--r-- | fs/compat_ioctl.c | 2 |
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; |