Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit febf7158 authored by Keith Busch's avatar Keith Busch Committed by Jens Axboe
Browse files

block: require blk_rq_prep_clone() be given an initialized clone request



Prepare to allow blk_rq_prep_clone() to accept clone requests that were
allocated from blk-mq request queues.  As such the blk_rq_prep_clone()
caller must first initialize the clone request.

Signed-off-by: default avatarKeith Busch <keith.busch@intel.com>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent 24391c0d
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2945,8 +2945,6 @@ int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
	if (!bs)
		bs = fs_bio_set;

	blk_rq_init(NULL, rq);

	__rq_for_each_bio(bio_src, rq_src) {
		bio = bio_clone_fast(bio_src, gfp_mask, bs);
		if (!bio)
+1 −0
Original line number Diff line number Diff line
@@ -1719,6 +1719,7 @@ static int setup_clone(struct request *clone, struct request *rq,
{
	int r;

	blk_rq_init(NULL, rq);
	r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
			      dm_rq_bio_constructor, tio);
	if (r)