f2fs: submit bio after shutdown

Sometimes, some merged IOs could get a chance to be submitted, resulting in
system hang in shutdown test. This issues IOs all the time after shutdown.

Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
Jaegeuk Kim 2018-09-06 11:40:12 -07:00
parent 0ded69f632
commit 5ce805869c

View file

@ -533,6 +533,8 @@ void f2fs_submit_page_write(struct f2fs_io_info *fio)
if (fio->in_list) if (fio->in_list)
goto next; goto next;
out: out:
if (is_sbi_flag_set(sbi, SBI_IS_SHUTDOWN))
__submit_merged_bio(io);
up_write(&io->io_rwsem); up_write(&io->io_rwsem);
} }