Symbol: bio_stats
drivers/md/dm-vdo/message-stats.c
262
static void write_bio_stats(char *prefix, struct bio_stats *stats, char *suffix,
drivers/md/dm-vdo/statistics.h
256
struct bio_stats bios_in;
drivers/md/dm-vdo/statistics.h
257
struct bio_stats bios_in_partial;
drivers/md/dm-vdo/statistics.h
259
struct bio_stats bios_out;
drivers/md/dm-vdo/statistics.h
261
struct bio_stats bios_meta;
drivers/md/dm-vdo/statistics.h
262
struct bio_stats bios_journal;
drivers/md/dm-vdo/statistics.h
263
struct bio_stats bios_page_cache;
drivers/md/dm-vdo/statistics.h
264
struct bio_stats bios_out_completed;
drivers/md/dm-vdo/statistics.h
265
struct bio_stats bios_meta_completed;
drivers/md/dm-vdo/statistics.h
266
struct bio_stats bios_journal_completed;
drivers/md/dm-vdo/statistics.h
267
struct bio_stats bios_page_cache_completed;
drivers/md/dm-vdo/statistics.h
268
struct bio_stats bios_acknowledged;
drivers/md/dm-vdo/statistics.h
269
struct bio_stats bios_acknowledged_partial;
drivers/md/dm-vdo/statistics.h
271
struct bio_stats bios_in_progress;
drivers/md/dm-vdo/vdo.c
1564
static void copy_bio_stat(struct bio_stats *b, const struct atomic_bio_stats *a)
drivers/md/dm-vdo/vdo.c
1574
static struct bio_stats subtract_bio_stats(struct bio_stats minuend,
drivers/md/dm-vdo/vdo.c
1575
struct bio_stats subtrahend)
drivers/md/dm-vdo/vdo.c
1577
return (struct bio_stats) {
drivers/md/dm-vdo/vio.c
457
void vdo_count_bios(struct atomic_bio_stats *bio_stats, struct bio *bio)
drivers/md/dm-vdo/vio.c
460
atomic64_inc(&bio_stats->empty_flush);
drivers/md/dm-vdo/vio.c
461
atomic64_inc(&bio_stats->flush);
drivers/md/dm-vdo/vio.c
467
atomic64_inc(&bio_stats->write);
drivers/md/dm-vdo/vio.c
470
atomic64_inc(&bio_stats->read);
drivers/md/dm-vdo/vio.c
473
atomic64_inc(&bio_stats->discard);
drivers/md/dm-vdo/vio.c
485
atomic64_inc(&bio_stats->flush);
drivers/md/dm-vdo/vio.c
487
atomic64_inc(&bio_stats->fua);
drivers/md/dm-vdo/vio.h
169
void vdo_count_bios(struct atomic_bio_stats *bio_stats, struct bio *bio);