Lines Matching refs:totals
4984 struct block_allocator_statistics totals; in get_block_allocator_statistics() local
4987 memset(&totals, 0, sizeof(totals)); in get_block_allocator_statistics()
4993 totals.slab_count += allocator->slab_count; in get_block_allocator_statistics()
4994 totals.slabs_opened += READ_ONCE(stats->slabs_opened); in get_block_allocator_statistics()
4995 totals.slabs_reopened += READ_ONCE(stats->slabs_reopened); in get_block_allocator_statistics()
4998 return totals; in get_block_allocator_statistics()
5010 struct ref_counts_statistics totals; in get_ref_counts_statistics() local
5013 memset(&totals, 0, sizeof(totals)); in get_ref_counts_statistics()
5016 totals.blocks_written += in get_ref_counts_statistics()
5020 return totals; in get_ref_counts_statistics()
5032 struct slab_journal_statistics totals; in get_slab_journal_statistics() local
5035 memset(&totals, 0, sizeof(totals)); in get_slab_journal_statistics()
5041 totals.disk_full_count += READ_ONCE(stats->disk_full_count); in get_slab_journal_statistics()
5042 totals.flush_count += READ_ONCE(stats->flush_count); in get_slab_journal_statistics()
5043 totals.blocked_count += READ_ONCE(stats->blocked_count); in get_slab_journal_statistics()
5044 totals.blocks_written += READ_ONCE(stats->blocks_written); in get_slab_journal_statistics()
5045 totals.tail_busy_count += READ_ONCE(stats->tail_busy_count); in get_slab_journal_statistics()
5048 return totals; in get_slab_journal_statistics()