Message ID | 20230821152225.4086924-2-chao@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 5118697f7215711f83c339cedab68399d6a01314 |
Headers | show |
Series | [f2fs-dev,1/3] f2fs: clean up error handling in sanity_check_{compress_, }inode() | expand |
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 5d9697717353..916e317ac925 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -1167,6 +1167,9 @@ static int f2fs_submit_page_read(struct inode *inode, struct page *page, f2fs_wait_on_block_writeback(inode, blkaddr); if (bio_add_page(bio, page, PAGE_SIZE, 0) < PAGE_SIZE) { + iostat_update_and_unbind_ctx(bio); + if (bio->bi_private) + mempool_free(bio->bi_private, bio_post_read_ctx_pool); bio_put(bio); return -EFAULT; }
In error path of f2fs_submit_page_read(), it missed to call iostat_update_and_unbind_ctx() and free bio_post_read_ctx, fix it. Signed-off-by: Chao Yu <chao@kernel.org> --- fs/f2fs/data.c | 3 +++ 1 file changed, 3 insertions(+)