mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
erofs: fix memory leak on short-lived bounced pages
[ Upstream commit93d6fda7f9] Both MicroLZMA and DEFLATE algorithms can use short-lived pages on demand for the overlapped inplace I/O decompression. However, those short-lived pages are actually added to `be->compressed_pages`. Thus, it should be checked instead of `pcl->compressed_bvecs`. The LZ4 algorithm doesn't work like this, so it won't be impacted. Fixes:67139e36d9("erofs: introduce `z_erofs_parse_in_bvecs'") Reviewed-by: Yue Hu <huyue2@coolpad.com> Reviewed-by: Chao Yu <chao@kernel.org> Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com> Link: https://lore.kernel.org/r/20231128180431.4116991-1-hsiangkao@linux.alibaba.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f9b891a7e8
commit
2458d56a58
@@ -1309,12 +1309,11 @@ out:
|
|||||||
put_page(page);
|
put_page(page);
|
||||||
} else {
|
} else {
|
||||||
for (i = 0; i < pclusterpages; ++i) {
|
for (i = 0; i < pclusterpages; ++i) {
|
||||||
page = pcl->compressed_bvecs[i].page;
|
/* consider shortlived pages added when decompressing */
|
||||||
|
page = be->compressed_pages[i];
|
||||||
|
|
||||||
if (erofs_page_is_managed(sbi, page))
|
if (erofs_page_is_managed(sbi, page))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* recycle all individual short-lived pages */
|
|
||||||
(void)z_erofs_put_shortlivedpage(be->pagepool, page);
|
(void)z_erofs_put_shortlivedpage(be->pagepool, page);
|
||||||
WRITE_ONCE(pcl->compressed_bvecs[i].page, NULL);
|
WRITE_ONCE(pcl->compressed_bvecs[i].page, NULL);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user