Home
last modified time | relevance | path

Searched refs:stat64_get (Results 1 – 8 of 8) sorted by relevance

/openbmc/qemu/migration/
H A Dmigration-stats.c32 uint64_t rate_limit_start = stat64_get(&mig_stats.rate_limit_start); in migration_rate_exceeded()
44 return stat64_get(&mig_stats.rate_limit_max); in migration_rate_get()
64 uint64_t multifd = stat64_get(&mig_stats.multifd_bytes); in migration_transferred_bytes()
65 uint64_t rdma = stat64_get(&mig_stats.rdma_bytes); in migration_transferred_bytes()
66 uint64_t qemu_file = stat64_get(&mig_stats.qemu_file_transferred); in migration_transferred_bytes()
H A Dcpu-throttle.c137 uint64_t sync_cnt = stat64_get(&mig_stats.dirty_sync_count); in cpu_throttle_dirty_sync_timer_tick()
156 throttle_dirty_sync_count_prev = stat64_get(&mig_stats.dirty_sync_count); in cpu_throttle_dirty_sync_timer_tick()
H A Dmigration.c1178 info->ram->duplicate = stat64_get(&mig_stats.zero_pages); in populate_ram_info()
1179 info->ram->normal = stat64_get(&mig_stats.normal_pages); in populate_ram_info()
1183 stat64_get(&mig_stats.dirty_sync_count); in populate_ram_info()
1185 stat64_get(&mig_stats.dirty_sync_missed_zero_copy); in populate_ram_info()
1187 stat64_get(&mig_stats.postcopy_requests); in populate_ram_info()
1189 info->ram->multifd_bytes = stat64_get(&mig_stats.multifd_bytes); in populate_ram_info()
1191 info->ram->precopy_bytes = stat64_get(&mig_stats.precopy_bytes); in populate_ram_info()
1192 info->ram->downtime_bytes = stat64_get(&mig_stats.downtime_bytes); in populate_ram_info()
1193 info->ram->postcopy_bytes = stat64_get(&mig_stats.postcopy_bytes); in populate_ram_info()
1214 stat64_get(&mig_stats.dirty_pages_rate); in populate_ram_info()
[all …]
H A Dram.c595 stat64_get(&mig_stats.dirty_sync_count)); in xbzrle_cache_zero_page()
621 uint64_t generation = stat64_get(&mig_stats.dirty_sync_count); in save_xbzrle_page()
948 return stat64_get(&mig_stats.normal_pages) + in ram_get_total_transferred_pages()
949 stat64_get(&mig_stats.zero_pages) + in ram_get_total_transferred_pages()
1086 uint64_t generation = stat64_get(&mig_stats.dirty_sync_count); in migration_bitmap_sync()
H A Dqemu-file.c722 uint64_t ret = stat64_get(&mig_stats.qemu_file_transferred); in qemu_file_transferred()
/openbmc/qemu/include/qemu/
H A Dstats64.h38 static inline uint64_t stat64_get(const Stat64 *s) in stat64_get() function
69 uint64_t stat64_get(const Stat64 *s);
/openbmc/qemu/util/
H A Dstats64.c44 uint64_t stat64_get(const Stat64 *s) in stat64_get() function
/openbmc/qemu/block/
H A Dqapi.c616 s->stats->wr_highest_offset = stat64_get(&bs->wr_highest_offset); in bdrv_query_bds_stats()