mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-26 04:20:23 +09:00
f2fs: fix error path handling in truncate_dnode()
[ Upstream commit0135c482fa] If truncate_node() fails in truncate_dnode(), it missed to call f2fs_put_page(), fix it. Fixes:7735730d39("f2fs: fix to propagate error from __get_meta_page()") Signed-off-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
c0dd447558
commit
d58d718136
@@ -942,8 +942,10 @@ static int truncate_dnode(struct dnode_of_data *dn)
|
||||
dn->ofs_in_node = 0;
|
||||
f2fs_truncate_data_blocks(dn);
|
||||
err = truncate_node(dn);
|
||||
if (err)
|
||||
if (err) {
|
||||
f2fs_put_page(page, 1);
|
||||
return err;
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user