bio->bi_iter.bi_size = bi_size;
}
-static void start_io_acct(struct dm_io *io)
+static void dm_start_io_acct(struct dm_io *io)
{
dm_io_acct(false, io->md, io->orig_bio, io->start_time, &io->stats_aux);
}
-static void end_io_acct(struct mapped_device *md, struct bio *bio,
- unsigned long start_time, struct dm_stats_aux *stats_aux)
+static void dm_end_io_acct(struct dm_io *io)
{
- dm_io_acct(true, md, bio, start_time, stats_aux);
+ dm_io_acct(true, io->md, io->orig_bio, io->start_time, &io->stats_aux);
}
static struct dm_io *alloc_io(struct mapped_device *md, struct bio *bio)
blk_status_t io_error;
struct bio *bio;
struct mapped_device *md = io->md;
- unsigned long start_time = 0;
- struct dm_stats_aux stats_aux;
/* Push-back supersedes any I/O errors */
if (unlikely(error)) {
}
io_error = io->status;
- start_time = io->start_time;
- stats_aux = io->stats_aux;
+ dm_end_io_acct(io);
free_io(md, io);
- end_io_acct(md, bio, start_time, &stats_aux);
smp_wmb();
this_cpu_dec(*md->pending_io);
* so that it gets handled *after* bios already submitted
* have been completely processed.
* We take a clone of the original to store in
- * ci.io->orig_bio to be used by end_io_acct() and
- * for dec_pending to use for completion handling.
+ * ci.io->orig_bio to be used by dm_end_io_acct() and
+ * for dm_io_dec_pending() to use for completion handling.
*/
struct bio *b = bio_split(bio, bio_sectors(bio) - ci.sector_count,
GFP_NOIO, &md->queue->bio_split);
submit_bio_noacct(bio);
}
}
- start_io_acct(ci.io);
+ dm_start_io_acct(ci.io);
/* drop the extra reference count */
dm_io_dec_pending(ci.io, errno_to_blk_status(error));