From: Eric Sandeen Date: Fri, 19 Feb 2016 18:19:01 +0000 (+0100) Subject: ext4: Make Q_GETNEXTQUOTA work for quota in hidden inodes X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=6332b9b5e79769b3e9d79d664896b872d7ba6a66;p=deliverable%2Flinux.git ext4: Make Q_GETNEXTQUOTA work for quota in hidden inodes We forgot to set .get_nextdqblk operation in quotactl_ops structure used by ext4 when quota is using hidden inode thus the operation was not really supported. Fix the omission. Signed-off-by: Eric Sandeen Signed-off-by: Jan Kara --- diff --git a/fs/ext4/super.c b/fs/ext4/super.c index b5bcbddceb91..2ed6596feadf 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -1142,7 +1142,8 @@ static const struct quotactl_ops ext4_qctl_operations = { .get_state = dquot_get_state, .set_info = dquot_set_dqinfo, .get_dqblk = dquot_get_dqblk, - .set_dqblk = dquot_set_dqblk + .set_dqblk = dquot_set_dqblk, + .get_nextdqblk = dquot_get_next_dqblk, }; #endif