Skip to content

Commit

Permalink
f2fs: add missing quota_initialize
Browse files Browse the repository at this point in the history
This patch adds to call quota_intialize in f2fs_set_acl, f2fs_unlink,
and f2fs_rename.

Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
  • Loading branch information
Jaegeuk Kim committed Nov 6, 2017
1 parent 8f1572f commit d8d1389
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions fs/f2fs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,9 @@ static int f2fs_unlink(struct inode *dir, struct dentry *dentry)
return -EIO;

err = dquot_initialize(dir);
if (err)
return err;
err = dquot_initialize(inode);
if (err)
return err;

Expand Down Expand Up @@ -809,6 +812,12 @@ static int f2fs_rename(struct inode *old_dir, struct dentry *old_dentry,
if (err)
goto out;

if (new_inode) {
err = dquot_initialize(new_inode);
if (err)
goto out;
}

old_entry = f2fs_find_entry(old_dir, &old_dentry->d_name, &old_page);
if (!old_entry) {
if (IS_ERR(old_page))
Expand Down
4 changes: 4 additions & 0 deletions fs/f2fs/xattr.c
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,10 @@ int f2fs_setxattr(struct inode *inode, int index, const char *name,
struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
int err;

err = dquot_initialize(inode);
if (err)
return err;

/* this case is only from init_inode_metadata */
if (ipage)
return __f2fs_setxattr(inode, index, name, value,
Expand Down

0 comments on commit d8d1389

Please sign in to comment.