summaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorLukas Czerner2010-11-20 03:18:35 +0100
committerTheodore Ts'o2010-11-20 03:18:35 +0100
commit93bb41f4f8b89ac8b4d0a734bc59634cb0a29a89 (patch)
tree16ed3163dbbdb5b46ed0f3a12d059b4c2c467e95 /fs/ext4
parentext4: ext4_fill_super shouldn't return 0 on corruption (diff)
downloadkernel-qcow2-linux-93bb41f4f8b89ac8b4d0a734bc59634cb0a29a89.tar.gz
kernel-qcow2-linux-93bb41f4f8b89ac8b4d0a734bc59634cb0a29a89.tar.xz
kernel-qcow2-linux-93bb41f4f8b89ac8b4d0a734bc59634cb0a29a89.zip
fs: Do not dispatch FITRIM through separate super_operation
There was concern that FITRIM ioctl is not common enough to be included in core vfs ioctl, as Christoph Hellwig pointed out there's no real point in dispatching this out to a separate vector instead of just through ->ioctl. So this commit removes ioctl_fstrim() from vfs ioctl and trim_fs from super_operation structure. Signed-off-by: Lukas Czerner <lczerner@redhat.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/super.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 14ada8c50c43..e32195d6aac3 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -1197,7 +1197,6 @@ static const struct super_operations ext4_sops = {
.quota_write = ext4_quota_write,
#endif
.bdev_try_to_free_page = bdev_try_to_free_page,
- .trim_fs = ext4_trim_fs
};
static const struct super_operations ext4_nojournal_sops = {