diff options
author | Kent Overstreet <koverstreet@google.com> | 2012-09-05 02:23:14 +0400 |
---|---|---|
committer | Kent Overstreet <koverstreet@google.com> | 2013-03-24 01:15:31 +0400 |
commit | 4f2ac93c175c4922bdddbfec6cad94b32cea0070 (patch) | |
tree | ce9df811f8a59c3af8486ee20fdc9d36fe5bfd25 /drivers/block/floppy.c | |
parent | 5b83636ae3c3b4f87d02a5929ad4dee831534db0 (diff) | |
download | linux-4f2ac93c175c4922bdddbfec6cad94b32cea0070.tar.xz |
block: Remove bi_idx references
For immutable bvecs, all bi_idx usage needs to be audited - so here
we're removing all the unnecessary uses.
Most of these are places where it was being initialized on a bio that
was just allocated, a few others are conversions to standard macros.
Signed-off-by: Kent Overstreet <koverstreet@google.com>
CC: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block/floppy.c')
-rw-r--r-- | drivers/block/floppy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c index 2ddd64a9ffde..83232639034e 100644 --- a/drivers/block/floppy.c +++ b/drivers/block/floppy.c @@ -3777,7 +3777,6 @@ static int __floppy_read_block_0(struct block_device *bdev) bio_vec.bv_len = size; bio_vec.bv_offset = 0; bio.bi_vcnt = 1; - bio.bi_idx = 0; bio.bi_size = size; bio.bi_bdev = bdev; bio.bi_sector = 0; |