Commit 2124469e authored by Jens Axboe's avatar Jens Axboe

aoe: get rid of cached bv variable in bufinit()

Less error prone if we just kill it, it's only used once
anyway.
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent b1a67b0f
...@@ -919,16 +919,14 @@ bio_pagedec(struct bio *bio) ...@@ -919,16 +919,14 @@ bio_pagedec(struct bio *bio)
static void static void
bufinit(struct buf *buf, struct request *rq, struct bio *bio) bufinit(struct buf *buf, struct request *rq, struct bio *bio)
{ {
struct bio_vec *bv;
memset(buf, 0, sizeof(*buf)); memset(buf, 0, sizeof(*buf));
buf->rq = rq; buf->rq = rq;
buf->bio = bio; buf->bio = bio;
buf->resid = bio->bi_size; buf->resid = bio->bi_size;
buf->sector = bio->bi_sector; buf->sector = bio->bi_sector;
bio_pageinc(bio); bio_pageinc(bio);
buf->bv = bv = &bio->bi_io_vec[bio->bi_idx]; buf->bv = &bio->bi_io_vec[bio->bi_idx];
buf->bv_resid = bv->bv_len; buf->bv_resid = buf->bv->bv_len;
WARN_ON(buf->bv_resid == 0); WARN_ON(buf->bv_resid == 0);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment