aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJie Liu <jeff.liu@oracle.com>2014-01-21 18:48:34 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2014-01-21 19:19:42 -0500
commit19e8ac2721148a475833d7b5f893f9b81fbb0045 (patch)
tree6b07661bfe12c9952eb032d8149634acb3220ccd
parent0a2fcd8988ac682f443fd5b0a7c48154a7b42ef2 (diff)
ocfs2: return EOPNOTSUPP if the device does not support discard
For FITRIM ioctl(2), we should return EOPNOTSUPP to inform the user that the storage device does not support discard if it is, otherwise return success would confuse the user even though there is no free blocks were trimmed at all. Signed-off-by: Jie Liu <jeff.liu@oracle.com> Cc: Mark Fasheh <mfasheh@suse.com> Cc: Joel Becker <jlbec@evilplan.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--fs/ocfs2/ioctl.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/ocfs2/ioctl.c b/fs/ocfs2/ioctl.c
index fa32ce9b455d..4de6a2af592f 100644
--- a/fs/ocfs2/ioctl.c
+++ b/fs/ocfs2/ioctl.c
@@ -7,6 +7,7 @@
7 7
8#include <linux/fs.h> 8#include <linux/fs.h>
9#include <linux/mount.h> 9#include <linux/mount.h>
10#include <linux/blkdev.h>
10#include <linux/compat.h> 11#include <linux/compat.h>
11 12
12#include <cluster/masklog.h> 13#include <cluster/masklog.h>
@@ -966,12 +967,16 @@ long ocfs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
966 case FITRIM: 967 case FITRIM:
967 { 968 {
968 struct super_block *sb = inode->i_sb; 969 struct super_block *sb = inode->i_sb;
970 struct request_queue *q = bdev_get_queue(sb->s_bdev);
969 struct fstrim_range range; 971 struct fstrim_range range;
970 int ret = 0; 972 int ret = 0;
971 973
972 if (!capable(CAP_SYS_ADMIN)) 974 if (!capable(CAP_SYS_ADMIN))
973 return -EPERM; 975 return -EPERM;
974 976
977 if (!blk_queue_discard(q))
978 return -EOPNOTSUPP;
979
975 if (copy_from_user(&range, argp, sizeof(range))) 980 if (copy_from_user(&range, argp, sizeof(range)))
976 return -EFAULT; 981 return -EFAULT;
977 982