diff options
author | Jan Kara <jack@suse.cz> | 2016-01-25 13:24:50 -0500 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2016-02-09 07:05:23 -0500 |
commit | be6257b251cebd2deb8c76d43e387e28e3f7412d (patch) | |
tree | 379bf76bed705eb93e7ab9902ddffd343a383fe4 /fs/ext4/super.c | |
parent | 484a10f49387e4386bf2708532e75bf78ffea2cb (diff) |
quota: Add support for ->get_nextdqblk() for VFS quota
Add infrastructure for supporting get_nextdqblk() callback for VFS
quotas. Translate the operation into a callback to appropriate
filesystem and consequently to quota format callback.
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r-- | fs/ext4/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 3ed01ec011d7..b5bcbddceb91 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -1132,6 +1132,7 @@ static const struct dquot_operations ext4_quota_operations = { | |||
1132 | .alloc_dquot = dquot_alloc, | 1132 | .alloc_dquot = dquot_alloc, |
1133 | .destroy_dquot = dquot_destroy, | 1133 | .destroy_dquot = dquot_destroy, |
1134 | .get_projid = ext4_get_projid, | 1134 | .get_projid = ext4_get_projid, |
1135 | .get_next_id = dquot_get_next_id, | ||
1135 | }; | 1136 | }; |
1136 | 1137 | ||
1137 | static const struct quotactl_ops ext4_qctl_operations = { | 1138 | static const struct quotactl_ops ext4_qctl_operations = { |