diff options
author | Sheng Yong <shengyong1@huawei.com> | 2017-04-21 22:39:20 -0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2017-04-25 17:16:31 -0400 |
commit | d3bb910c15d75ee3340311c64a1c05985bb663a3 (patch) | |
tree | 3914c7fed2ae289d092481b11396b9d393d13c4d /fs/f2fs/dir.c | |
parent | 4086d3f61b6573f65ddc13fc375c0c7b0ac482a0 (diff) |
f2fs: fix multiple f2fs_add_link() having same name for inline dentry
Commit 88c5c13a5027 (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: 88c5c13a5027 (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>
Diffstat (limited to 'fs/f2fs/dir.c')
-rw-r--r-- | fs/f2fs/dir.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/fs/f2fs/dir.c b/fs/f2fs/dir.c index c143dffcae6e..b8c62e9669bc 100644 --- a/fs/f2fs/dir.c +++ b/fs/f2fs/dir.c | |||
@@ -207,13 +207,9 @@ static struct f2fs_dir_entry *find_in_level(struct inode *dir, | |||
207 | f2fs_put_page(dentry_page, 0); | 207 | f2fs_put_page(dentry_page, 0); |
208 | } | 208 | } |
209 | 209 | ||
210 | /* This is to increase the speed of f2fs_create */ | 210 | if (!de && room && F2FS_I(dir)->chash != namehash) { |
211 | if (!de && room) { | 211 | F2FS_I(dir)->chash = namehash; |
212 | F2FS_I(dir)->task = current; | 212 | F2FS_I(dir)->clevel = level; |
213 | if (F2FS_I(dir)->chash != namehash) { | ||
214 | F2FS_I(dir)->chash = namehash; | ||
215 | F2FS_I(dir)->clevel = level; | ||
216 | } | ||
217 | } | 213 | } |
218 | 214 | ||
219 | return de; | 215 | return de; |
@@ -254,6 +250,9 @@ struct f2fs_dir_entry *__f2fs_find_entry(struct inode *dir, | |||
254 | break; | 250 | break; |
255 | } | 251 | } |
256 | out: | 252 | out: |
253 | /* This is to increase the speed of f2fs_create */ | ||
254 | if (!de) | ||
255 | F2FS_I(dir)->task = current; | ||
257 | return de; | 256 | return de; |
258 | } | 257 | } |
259 | 258 | ||