fs: Use dquot_load_quota_inode() from filesystems
authorJan Kara <jack@suse.cz>
Fri, 1 Nov 2019 17:55:38 +0000 (18:55 +0100)
committerJan Kara <jack@suse.cz>
Mon, 4 Nov 2019 08:58:05 +0000 (09:58 +0100)
Use dquot_load_quota_inode from filesystems instead of dquot_enable().
In all three cases we want to load quota inode and never use the
function to update quota flags.

Signed-off-by: Jan Kara <jack@suse.cz>
fs/ext4/super.c
fs/f2fs/super.c
fs/ocfs2/super.c

index dd654e5..1b947c9 100644 (file)
@@ -5835,7 +5835,7 @@ static int ext4_quota_enable(struct super_block *sb, int type, int format_id,
        /* Don't account quota for quota files to avoid recursion */
        qf_inode->i_flags |= S_NOQUOTA;
        lockdep_set_quota_inode(qf_inode, I_DATA_SEM_QUOTA);
-       err = dquot_enable(qf_inode, type, format_id, flags);
+       err = dquot_load_quota_inode(qf_inode, type, format_id, flags);
        if (err)
                lockdep_set_quota_inode(qf_inode, I_DATA_SEM_NORMAL);
        iput(qf_inode);
index 1443cee..91745d5 100644 (file)
@@ -1932,7 +1932,7 @@ static int f2fs_quota_enable(struct super_block *sb, int type, int format_id,
 
        /* Don't account quota for quota files to avoid recursion */
        qf_inode->i_flags |= S_NOQUOTA;
-       err = dquot_enable(qf_inode, type, format_id, flags);
+       err = dquot_load_quota_inode(qf_inode, type, format_id, flags);
        iput(qf_inode);
        return err;
 }
index c81e86c..05dd68a 100644 (file)
@@ -926,8 +926,8 @@ static int ocfs2_enable_quotas(struct ocfs2_super *osb)
                        status = -ENOENT;
                        goto out_quota_off;
                }
-               status = dquot_enable(inode[type], type, QFMT_OCFS2,
-                                     DQUOT_USAGE_ENABLED);
+               status = dquot_load_quota_inode(inode[type], type, QFMT_OCFS2,
+                                               DQUOT_USAGE_ENABLED);
                if (status < 0)
                        goto out_quota_off;
        }