Re: [f2fs-dev] [PATCH v2] f2fs: compress: fix to call f2fs_wait_on_page_writeback() in f2fs_write_raw_pages()

2023-03-27 Thread patchwork-bot+f2fs
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Tue, 21 Mar 2023 01:22:18 +0800 you wrote: > BUG_ON() will be triggered when writing files concurrently, > because the same page is writtenback multiple times. > > 1597 void folio_end_writeback(struct folio *folio) >

Re: [f2fs-dev] [PATCH v2] f2fs: compress: fix to call f2fs_wait_on_page_writeback() in f2fs_write_raw_pages()

2023-03-26 Thread Chao Yu
On 2023/3/21 1:22, Yangtao Li wrote: BUG_ON() will be triggered when writing files concurrently, because the same page is writtenback multiple times. 1597 void folio_end_writeback(struct folio *folio) 1598 { .. 1618 if (!__folio_end_writeback(folio)) 1619 BUG();

[f2fs-dev] [PATCH v2] f2fs: compress: fix to call f2fs_wait_on_page_writeback() in f2fs_write_raw_pages()

2023-03-20 Thread Yangtao Li via Linux-f2fs-devel
BUG_ON() will be triggered when writing files concurrently, because the same page is writtenback multiple times. 1597 void folio_end_writeback(struct folio *folio) 1598 { .. 1618 if (!__folio_end_writeback(folio)) 1619 BUG(); .. 1625 } kernel