diff options
author | Ed L. Cashin <ecashin@coraid.com> | 2006-09-20 14:36:50 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-10-18 12:53:50 -0700 |
commit | 392e4845f9728114f7ffa8d7612683397fd4d441 (patch) | |
tree | fb86e5b7f2a066c9e9458619b746a015e4d2dbe4 /drivers/block/aoe/aoecmd.c | |
parent | b751e8b6590efdb76e1682c85bfcd5f3531ccae4 (diff) | |
download | kernel_samsung_smdk4412-392e4845f9728114f7ffa8d7612683397fd4d441.zip kernel_samsung_smdk4412-392e4845f9728114f7ffa8d7612683397fd4d441.tar.gz kernel_samsung_smdk4412-392e4845f9728114f7ffa8d7612683397fd4d441.tar.bz2 |
aoe: use bio->bi_idx
Instead of starting with bio->bi_io_vec, use the offset in bio->bi_idx.
Signed-off-by: "Ed L. Cashin" <ecashin@coraid.com>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/block/aoe/aoecmd.c')
-rw-r--r-- | drivers/block/aoe/aoecmd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c index f2b8f55..2d0bcdd 100644 --- a/drivers/block/aoe/aoecmd.c +++ b/drivers/block/aoe/aoecmd.c @@ -166,6 +166,7 @@ aoecmd_ata_rw(struct aoedev *d, struct frame *f) d->inprocess = NULL; } else if (buf->bv_resid == 0) { buf->bv++; + WARN_ON(buf->bv->bv_len == 0); buf->bv_resid = buf->bv->bv_len; buf->bufaddr = page_address(buf->bv->bv_page) + buf->bv->bv_offset; } |