]> git.baikalelectronics.ru Git - kernel.git/commit
f2fs: fix multiple f2fs_add_link() having same name for inline dentry
authorSheng Yong <shengyong1@huawei.com>
Sat, 22 Apr 2017 02:39:20 +0000 (10:39 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Tue, 25 Apr 2017 21:16:31 +0000 (14:16 -0700)
commitf11bb35011b44d8b805d29499b2fbedd2ac557f3
tree3914c7fed2ae289d092481b11396b9d393d13c4d
parenta28c90747ddc2be842f588c018967d23dda9ae21
f2fs: fix multiple f2fs_add_link() having same name for inline dentry

Commit 7c92a9c34425 (f2fs: fix multiple f2fs_add_link() calls having
same name) does not cover the scenario where inline dentry is enabled.
In that case, F2FS_I(dir)->task will be NULL, and __f2fs_add_link will
lookup dentries one more time.

This patch fixes it by moving the assigment of current task to a upper
level to cover both normal and inline dentry.

Cc: <stable@vger.kernel.org>
Fixes: 7c92a9c34425 (f2fs: fix multiple f2fs_add_link() calls having same name)
Signed-off-by: Sheng Yong <shengyong1@huawei.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/dir.c