* [PATCH V7 01/24] dm: use bio_split() when splitting out the already processed bio
[not found] <20180627124548.3456-1-ming.lei@redhat.com>
@ 2018-06-27 12:45 ` Ming Lei
2018-06-27 13:17 ` Mike Snitzer
0 siblings, 1 reply; 2+ messages in thread
From: Ming Lei @ 2018-06-27 12:45 UTC (permalink / raw)
To: Jens Axboe, Christoph Hellwig, Kent Overstreet
Cc: David Sterba, Huang Ying, Mike Snitzer, linux-kernel, linux-block,
linux-fsdevel, linux-mm, Theodore Ts'o, Darrick J . Wong,
Coly Li, Filipe Manana, Randy Dunlap, stable
From: Mike Snitzer <snitzer@redhat.com>
Use of bio_clone_bioset() is inefficient if there is no need to clone
the original bio's bio_vec array. Best to use the bio_clone_fast()
variant. Also, just using bio_advance() is only part of what is needed
to properly setup the clone -- it doesn't account for the various
bio_integrity() related work that also needs to be performed (see
bio_split).
Address both of these issues by switching from bio_clone_bioset() to
bio_split().
Fixes: 18a25da8 ("dm: ensure bio submission follows a depth-first tree walk")
Cc: stable@vger.kernel.org
Reported-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: NeilBrown <neilb@suse.com>
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
---
drivers/md/dm.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/md/dm.c b/drivers/md/dm.c
index e65429a29c06..a3b103e8e3ce 100644
--- a/drivers/md/dm.c
+++ b/drivers/md/dm.c
@@ -1606,10 +1606,9 @@ static blk_qc_t __split_and_process_bio(struct mapped_device *md,
* the usage of io->orig_bio in dm_remap_zone_report()
* won't be affected by this reassignment.
*/
- struct bio *b = bio_clone_bioset(bio, GFP_NOIO,
- &md->queue->bio_split);
+ struct bio *b = bio_split(bio, bio_sectors(bio) - ci.sector_count,
+ GFP_NOIO, &md->queue->bio_split);
ci.io->orig_bio = b;
- bio_advance(bio, (bio_sectors(bio) - ci.sector_count) << 9);
bio_chain(b, bio);
ret = generic_make_request(bio);
break;
--
2.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread