aboutsummaryrefslogtreecommitdiffstats
path: root/fs/quota
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2014-09-30 04:43:09 -0400
committerJan Kara <jack@suse.cz>2014-11-10 04:06:08 -0500
commit2c5f648aa24a7c8f0668d8ce5722d69da5bef739 (patch)
tree569961ba122f15e947a0f0dbe71c6994b8e00b2c /fs/quota
parent6bab3596bbede980c067eaeaf6a470c262888dac (diff)
quota: Allow each filesystem to specify which quota types it supports
Currently all filesystems supporting VFS quota support user and group quotas. With introduction of project quotas this is going to change so make sure filesystem isn't called for quota type it doesn't support by introduction of a bitmask determining which quota types each filesystem supports. Acked-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/quota')
-rw-r--r--fs/quota/quota.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/fs/quota/quota.c b/fs/quota/quota.c
index 75621649dbd7..2aa4151f99d2 100644
--- a/fs/quota/quota.c
+++ b/fs/quota/quota.c
@@ -47,8 +47,11 @@ static int check_quotactl_permission(struct super_block *sb, int type, int cmd,
47 47
48static void quota_sync_one(struct super_block *sb, void *arg) 48static void quota_sync_one(struct super_block *sb, void *arg)
49{ 49{
50 if (sb->s_qcop && sb->s_qcop->quota_sync) 50 int type = *(int *)arg;
51 sb->s_qcop->quota_sync(sb, *(int *)arg); 51
52 if (sb->s_qcop && sb->s_qcop->quota_sync &&
53 (sb->s_quota_types & (1 << type)))
54 sb->s_qcop->quota_sync(sb, type);
52} 55}
53 56
54static int quota_sync_all(int type) 57static int quota_sync_all(int type)
@@ -297,8 +300,14 @@ static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
297 300
298 if (type >= (XQM_COMMAND(cmd) ? XQM_MAXQUOTAS : MAXQUOTAS)) 301 if (type >= (XQM_COMMAND(cmd) ? XQM_MAXQUOTAS : MAXQUOTAS))
299 return -EINVAL; 302 return -EINVAL;
303 /*
304 * Quota not supported on this fs? Check this before s_quota_types
305 * since they needn't be set if quota is not supported at all.
306 */
300 if (!sb->s_qcop) 307 if (!sb->s_qcop)
301 return -ENOSYS; 308 return -ENOSYS;
309 if (!(sb->s_quota_types & (1 << type)))
310 return -EINVAL;
302 311
303 ret = check_quotactl_permission(sb, type, cmd, id); 312 ret = check_quotactl_permission(sb, type, cmd, id);
304 if (ret < 0) 313 if (ret < 0)