Lines Matching refs:totals

3286 	struct block_map_statistics totals;  in vdo_get_block_map_statistics()  local
3288 memset(&totals, 0, sizeof(struct block_map_statistics)); in vdo_get_block_map_statistics()
3293 totals.dirty_pages += READ_ONCE(stats->dirty_pages); in vdo_get_block_map_statistics()
3294 totals.clean_pages += READ_ONCE(stats->clean_pages); in vdo_get_block_map_statistics()
3295 totals.free_pages += READ_ONCE(stats->free_pages); in vdo_get_block_map_statistics()
3296 totals.failed_pages += READ_ONCE(stats->failed_pages); in vdo_get_block_map_statistics()
3297 totals.incoming_pages += READ_ONCE(stats->incoming_pages); in vdo_get_block_map_statistics()
3298 totals.outgoing_pages += READ_ONCE(stats->outgoing_pages); in vdo_get_block_map_statistics()
3299 totals.cache_pressure += READ_ONCE(stats->cache_pressure); in vdo_get_block_map_statistics()
3300 totals.read_count += READ_ONCE(stats->read_count); in vdo_get_block_map_statistics()
3301 totals.write_count += READ_ONCE(stats->write_count); in vdo_get_block_map_statistics()
3302 totals.failed_reads += READ_ONCE(stats->failed_reads); in vdo_get_block_map_statistics()
3303 totals.failed_writes += READ_ONCE(stats->failed_writes); in vdo_get_block_map_statistics()
3304 totals.reclaimed += READ_ONCE(stats->reclaimed); in vdo_get_block_map_statistics()
3305 totals.read_outgoing += READ_ONCE(stats->read_outgoing); in vdo_get_block_map_statistics()
3306 totals.found_in_cache += READ_ONCE(stats->found_in_cache); in vdo_get_block_map_statistics()
3307 totals.discard_required += READ_ONCE(stats->discard_required); in vdo_get_block_map_statistics()
3308 totals.wait_for_page += READ_ONCE(stats->wait_for_page); in vdo_get_block_map_statistics()
3309 totals.fetch_required += READ_ONCE(stats->fetch_required); in vdo_get_block_map_statistics()
3310 totals.pages_loaded += READ_ONCE(stats->pages_loaded); in vdo_get_block_map_statistics()
3311 totals.pages_saved += READ_ONCE(stats->pages_saved); in vdo_get_block_map_statistics()
3312 totals.flush_count += READ_ONCE(stats->flush_count); in vdo_get_block_map_statistics()
3315 return totals; in vdo_get_block_map_statistics()