Commit 9a99c17d authored by Lihong Kou's avatar Lihong Kou Committed by Jaegeuk Kim
Browse files

f2fs: make trace enter and end in pairs for unlink



In the f2fs_unlink we do not add trace end for some
error paths, just add.

Signed-off-by: default avatarLihong Kou <koulihong@huawei.com>
Reviewed-by: default avatarChao Yu <yuchao0@huawei.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent eb1353cf
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -569,15 +569,17 @@ static int f2fs_unlink(struct inode *dir, struct dentry *dentry)

	trace_f2fs_unlink_enter(dir, dentry);

	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;
	if (unlikely(f2fs_cp_error(sbi))) {
		err = -EIO;
		goto fail;
	}

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

	de = f2fs_find_entry(dir, &dentry->d_name, &page);
	if (!de) {