|
@@ -71,10 +71,9 @@ static void f2fs_write_end_io(struct bio *bio)
|
|
|
f2fs_stop_checkpoint(sbi);
|
|
|
}
|
|
|
end_page_writeback(page);
|
|
|
- dec_page_count(sbi, F2FS_WRITEBACK);
|
|
|
}
|
|
|
-
|
|
|
- if (!get_pages(sbi, F2FS_WRITEBACK) && wq_has_sleeper(&sbi->cp_wait))
|
|
|
+ if (atomic_dec_and_test(&sbi->nr_wb_bios) &&
|
|
|
+ wq_has_sleeper(&sbi->cp_wait))
|
|
|
wake_up(&sbi->cp_wait);
|
|
|
|
|
|
bio_put(bio);
|
|
@@ -98,6 +97,14 @@ static struct bio *__bio_alloc(struct f2fs_sb_info *sbi, block_t blk_addr,
|
|
|
return bio;
|
|
|
}
|
|
|
|
|
|
+static inline void __submit_bio(struct f2fs_sb_info *sbi, int rw,
|
|
|
+ struct bio *bio)
|
|
|
+{
|
|
|
+ if (!is_read_io(rw))
|
|
|
+ atomic_inc(&sbi->nr_wb_bios);
|
|
|
+ submit_bio(rw, bio);
|
|
|
+}
|
|
|
+
|
|
|
static void __submit_merged_bio(struct f2fs_bio_info *io)
|
|
|
{
|
|
|
struct f2fs_io_info *fio = &io->fio;
|
|
@@ -110,7 +117,7 @@ static void __submit_merged_bio(struct f2fs_bio_info *io)
|
|
|
else
|
|
|
trace_f2fs_submit_write_bio(io->sbi->sb, fio, io->bio);
|
|
|
|
|
|
- submit_bio(fio->rw, io->bio);
|
|
|
+ __submit_bio(io->sbi, fio->rw, io->bio);
|
|
|
io->bio = NULL;
|
|
|
}
|
|
|
|
|
@@ -228,7 +235,7 @@ int f2fs_submit_page_bio(struct f2fs_io_info *fio)
|
|
|
return -EFAULT;
|
|
|
}
|
|
|
|
|
|
- submit_bio(fio->rw, bio);
|
|
|
+ __submit_bio(fio->sbi, fio->rw, bio);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -248,9 +255,6 @@ void f2fs_submit_page_mbio(struct f2fs_io_info *fio)
|
|
|
|
|
|
down_write(&io->io_rwsem);
|
|
|
|
|
|
- if (!is_read)
|
|
|
- inc_page_count(sbi, F2FS_WRITEBACK);
|
|
|
-
|
|
|
if (io->bio && (io->last_block_in_bio != fio->new_blkaddr - 1 ||
|
|
|
io->fio.rw != fio->rw))
|
|
|
__submit_merged_bio(io);
|
|
@@ -1047,7 +1051,7 @@ got_it:
|
|
|
*/
|
|
|
if (bio && (last_block_in_bio != block_nr - 1)) {
|
|
|
submit_and_realloc:
|
|
|
- submit_bio(READ, bio);
|
|
|
+ __submit_bio(F2FS_I_SB(inode), READ, bio);
|
|
|
bio = NULL;
|
|
|
}
|
|
|
if (bio == NULL) {
|
|
@@ -1090,7 +1094,7 @@ set_error_page:
|
|
|
goto next_page;
|
|
|
confused:
|
|
|
if (bio) {
|
|
|
- submit_bio(READ, bio);
|
|
|
+ __submit_bio(F2FS_I_SB(inode), READ, bio);
|
|
|
bio = NULL;
|
|
|
}
|
|
|
unlock_page(page);
|
|
@@ -1100,7 +1104,7 @@ next_page:
|
|
|
}
|
|
|
BUG_ON(pages && !list_empty(pages));
|
|
|
if (bio)
|
|
|
- submit_bio(READ, bio);
|
|
|
+ __submit_bio(F2FS_I_SB(inode), READ, bio);
|
|
|
return 0;
|
|
|
}
|
|
|
|