block/fs/drivers: remove rw argument from submit_bio

This has callers of submit_bio/submit_bio_wait set the bio->bi_rw
instead of passing it in. This makes that use the same as
generic_make_request and how we set the other bio fields.

Signed-off-by: Mike Christie <mchristi@redhat.com>

Fixed up fs/ext4/crypto.c

Signed-off-by: Jens Axboe <axboe@fb.com>
这个提交包含在:
Mike Christie
2016-06-05 14:31:41 -05:00
提交者 Jens Axboe
父节点 af8c34ce6a
当前提交 4e49ea4a3d
修改 53 个文件,包含 221 行新增148 行删除

查看文件

@@ -364,7 +364,8 @@ static int nilfs_segbuf_submit_bio(struct nilfs_segment_buffer *segbuf,
bio->bi_end_io = nilfs_end_bio_write;
bio->bi_private = segbuf;
submit_bio(mode, bio);
bio->bi_rw = mode;
submit_bio(bio);
segbuf->sb_nbio++;
wi->bio = NULL;