mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-08 18:35:20 +02:00
f2fs: clean up w/ dotdot_name
[ Upstream commitff6584ac2c
] Just cleanup, no logic changes. Signed-off-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Stable-dep-of:884ee6dc85
("f2fs: get rid of online repaire on corrupted directory") Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
364afd8aa8
commit
66b1b8254d
|
@ -459,7 +459,6 @@ static int __recover_dot_dentries(struct inode *dir, nid_t pino)
|
||||||
{
|
{
|
||||||
struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
|
struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
|
||||||
struct qstr dot = QSTR_INIT(".", 1);
|
struct qstr dot = QSTR_INIT(".", 1);
|
||||||
struct qstr dotdot = QSTR_INIT("..", 2);
|
|
||||||
struct f2fs_dir_entry *de;
|
struct f2fs_dir_entry *de;
|
||||||
struct page *page;
|
struct page *page;
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
@ -497,13 +496,13 @@ static int __recover_dot_dentries(struct inode *dir, nid_t pino)
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
de = f2fs_find_entry(dir, &dotdot, &page);
|
de = f2fs_find_entry(dir, &dotdot_name, &page);
|
||||||
if (de)
|
if (de)
|
||||||
f2fs_put_page(page, 0);
|
f2fs_put_page(page, 0);
|
||||||
else if (IS_ERR(page))
|
else if (IS_ERR(page))
|
||||||
err = PTR_ERR(page);
|
err = PTR_ERR(page);
|
||||||
else
|
else
|
||||||
err = f2fs_do_add_link(dir, &dotdot, NULL, pino, S_IFDIR);
|
err = f2fs_do_add_link(dir, &dotdot_name, NULL, pino, S_IFDIR);
|
||||||
out:
|
out:
|
||||||
if (!err)
|
if (!err)
|
||||||
clear_inode_flag(dir, FI_INLINE_DOTS);
|
clear_inode_flag(dir, FI_INLINE_DOTS);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user