提交 8cdcb713 编写于 作者: J Jaegeuk Kim

f2fs: put the inode page when error was occurred

We should put the inode page when error was occurred.
Signed-off-by: NJaegeuk Kim <jaegeuk@kernel.org>
上级 6d20aff8
......@@ -963,22 +963,22 @@ static int f2fs_write_begin(struct file *file, struct address_space *mapping,
} else if (page->index == 0) {
err = f2fs_convert_inline_page(&dn, page);
if (err)
goto unlock_fail;
goto put_fail;
} else {
struct page *p = grab_cache_page(inode->i_mapping, 0);
if (!p) {
err = -ENOMEM;
goto unlock_fail;
goto put_fail;
}
err = f2fs_convert_inline_page(&dn, p);
f2fs_put_page(p, 1);
if (err)
goto unlock_fail;
goto put_fail;
}
}
err = f2fs_reserve_block(&dn, index);
if (err)
goto unlock_fail;
goto put_fail;
put_next:
f2fs_put_dnode(&dn);
f2fs_unlock_op(sbi);
......@@ -1021,6 +1021,8 @@ static int f2fs_write_begin(struct file *file, struct address_space *mapping,
clear_cold_data(page);
return 0;
put_fail:
f2fs_put_dnode(&dn);
unlock_fail:
f2fs_unlock_op(sbi);
f2fs_put_page(page, 1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册