diff options
author | Arnd Bergmann <arnd@arndb.de> | 2019-06-03 14:51:58 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2019-10-23 18:23:46 +0300 |
commit | 314999dcbca75c3ca8aaba102875d51ab409cf87 (patch) | |
tree | 4318122d01053f85ed56f7dfefcfe8e9127dbf03 /fs/hpfs/file.c | |
parent | 8d0980704842e8a68df2c3164c1c165e5c7ebc08 (diff) | |
download | linux-314999dcbca75c3ca8aaba102875d51ab409cf87.tar.xz |
fs: compat_ioctl: move FITRIM emulation into file systems
Remove the special case for FITRIM, and make file systems
handle that like all other ioctl commands with their own
handlers.
Cc: linux-ext4@vger.kernel.org
Cc: linux-f2fs-devel@lists.sourceforge.net
Cc: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Cc: linux-nilfs@vger.kernel.org
Cc: ocfs2-devel@oss.oracle.com
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'fs/hpfs/file.c')
-rw-r--r-- | fs/hpfs/file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/hpfs/file.c b/fs/hpfs/file.c index 1ecec124e76f..b36abf9cb345 100644 --- a/fs/hpfs/file.c +++ b/fs/hpfs/file.c @@ -215,6 +215,7 @@ const struct file_operations hpfs_file_ops = .fsync = hpfs_file_fsync, .splice_read = generic_file_splice_read, .unlocked_ioctl = hpfs_ioctl, + .compat_ioctl = compat_ptr_ioctl, }; const struct inode_operations hpfs_file_iops = |