[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [dm-devel] [PATCH v2 03/14] block: Add bio_clone_bioset()
- From: Vivek Goyal <vgoyal redhat com>
- To: Kent Overstreet <koverstreet google com>
- Cc: axboe kernel dk, yehuda hq newdream net, dm-devel redhat com, linux-kernel vger kernel org, tj kernel org, linux-bcache vger kernel org, mpatocka redhat com, bharrosh panasas com, linux-fsdevel vger kernel org, sage newdream net, agk redhat com, drbd-dev lists linbit com
- Subject: Re: [dm-devel] [PATCH v2 03/14] block: Add bio_clone_bioset()
- Date: Thu, 24 May 2012 14:45:07 -0400
On Wed, May 23, 2012 at 05:02:40PM -0700, Kent Overstreet wrote:
[..]
> --- a/drivers/md/dm.c
> +++ b/drivers/md/dm.c
> @@ -1062,26 +1062,19 @@ static struct bio *split_bvec(struct bio *bio, sector_t sector,
> * Creates a bio that consists of range of complete bvecs.
> */
> static struct bio *clone_bio(struct bio *bio, sector_t sector,
> - unsigned short idx, unsigned short bv_count,
> + unsigned short bv_count,
> unsigned int len, struct bio_set *bs)
> {
> struct bio *clone;
>
> - clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
> - __bio_clone(clone, bio);
> + clone = bio_clone_bioset(bio, GFP_NOIO, bs);
> clone->bi_sector = sector;
> - clone->bi_idx = idx;
> - clone->bi_vcnt = idx + bv_count;
> + clone->bi_vcnt = bv_count;
In last posting you said that you are going to backout this idx change
because you were not sure if it is correct.
Thanks
Vivek
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]