aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/inode.c2
-rw-r--r--fs/ext4/super.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
index 9f607ea411c8..6a002a6d0624 100644
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -5263,7 +5263,7 @@ int ext4_setattr(struct dentry *dentry, struct iattr *attr)
5263 error = PTR_ERR(handle); 5263 error = PTR_ERR(handle);
5264 goto err_out; 5264 goto err_out;
5265 } 5265 }
5266 error = vfs_dq_transfer(inode, attr) ? -EDQUOT : 0; 5266 error = dquot_transfer(inode, attr);
5267 if (error) { 5267 if (error) {
5268 ext4_journal_stop(handle); 5268 ext4_journal_stop(handle);
5269 return error; 5269 return error;
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index d231da8798e3..b4253fb7bab6 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -1017,7 +1017,6 @@ static const struct dquot_operations ext4_quota_operations = {
1017#ifdef CONFIG_QUOTA 1017#ifdef CONFIG_QUOTA
1018 .get_reserved_space = ext4_get_reserved_space, 1018 .get_reserved_space = ext4_get_reserved_space,
1019#endif 1019#endif
1020 .transfer = dquot_transfer,
1021 .write_dquot = ext4_write_dquot, 1020 .write_dquot = ext4_write_dquot,
1022 .acquire_dquot = ext4_acquire_dquot, 1021 .acquire_dquot = ext4_acquire_dquot,
1023 .release_dquot = ext4_release_dquot, 1022 .release_dquot = ext4_release_dquot,