diff options
author | Lukas Czerner <lczerner@redhat.com> | 2010-11-20 05:18:35 +0300 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-11-20 05:18:35 +0300 |
commit | 93bb41f4f8b89ac8b4d0a734bc59634cb0a29a89 (patch) | |
tree | 16ed3163dbbdb5b46ed0f3a12d059b4c2c467e95 /include/linux/fs.h | |
parent | 5a9ae68a349aa076bc8557ee2fcf865574459282 (diff) | |
download | linux-93bb41f4f8b89ac8b4d0a734bc59634cb0a29a89.tar.xz |
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 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 334d68a17108..eedc00b7b1ee 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1612,7 +1612,6 @@ struct super_operations { ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t); #endif int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t); - int (*trim_fs) (struct super_block *, struct fstrim_range *); }; /* |