diff options
author | Yan, Zheng <zheng.z.yan@intel.com> | 2014-06-26 03:25:17 -0400 |
---|---|---|
committer | Ilya Dryomov <ilya.dryomov@inktank.com> | 2014-07-08 07:08:46 -0400 |
commit | 494d77bf8fd732f164b91710bd522ee38acb4c2e (patch) | |
tree | 22b7099e3672cd684ef499238cdba215d07aa557 /fs/ceph | |
parent | 37ab77ac29b5bdec029a66f6d6eb4756679c7e12 (diff) |
ceph: check unsupported fallocate mode
Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/file.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ceph/file.c b/fs/ceph/file.c index 302085100c28..19af25dff644 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c | |||
@@ -1177,6 +1177,9 @@ static long ceph_fallocate(struct file *file, int mode, | |||
1177 | loff_t endoff = 0; | 1177 | loff_t endoff = 0; |
1178 | loff_t size; | 1178 | loff_t size; |
1179 | 1179 | ||
1180 | if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE)) | ||
1181 | return -EOPNOTSUPP; | ||
1182 | |||
1180 | if (!S_ISREG(inode->i_mode)) | 1183 | if (!S_ISREG(inode->i_mode)) |
1181 | return -EOPNOTSUPP; | 1184 | return -EOPNOTSUPP; |
1182 | 1185 | ||