summaryrefslogtreecommitdiffstats
path: root/drivers/block/aoe
diff options
context:
space:
mode:
authorJens Axboe2013-03-25 22:27:26 +0100
committerJens Axboe2013-03-25 22:27:26 +0100
commit2124469efa6079e6c325165fb1926159356b15c3 (patch)
tree1168735fae8c9efa9b320edd3bfb08618cef734e /drivers/block/aoe
parentbcache: Style/checkpatch fixes (diff)
downloadkernel-qcow2-linux-2124469efa6079e6c325165fb1926159356b15c3.tar.gz
kernel-qcow2-linux-2124469efa6079e6c325165fb1926159356b15c3.tar.xz
kernel-qcow2-linux-2124469efa6079e6c325165fb1926159356b15c3.zip
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: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block/aoe')
-rw-r--r--drivers/block/aoe/aoecmd.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c
index 25ef5c014fca..67d216c716da 100644
--- a/drivers/block/aoe/aoecmd.c
+++ b/drivers/block/aoe/aoecmd.c
@@ -919,16 +919,14 @@ bio_pagedec(struct bio *bio)
static void
bufinit(struct buf *buf, struct request *rq, struct bio *bio)
{
- struct bio_vec *bv;
-
memset(buf, 0, sizeof(*buf));
buf->rq = rq;
buf->bio = bio;
buf->resid = bio->bi_size;
buf->sector = bio->bi_sector;
bio_pageinc(bio);
- buf->bv = bv = &bio->bi_io_vec[bio->bi_idx];
- buf->bv_resid = bv->bv_len;
+ buf->bv = &bio->bi_io_vec[bio->bi_idx];
+ buf->bv_resid = buf->bv->bv_len;
WARN_ON(buf->bv_resid == 0);
}