2 * Dirtyrate implement code
4 * Copyright (c) 2020 HUAWEI TECHNOLOGIES CO.,LTD.
7 * Chuan Zheng <zhengchuan@huawei.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qemu/error-report.h"
16 #include "hw/core/cpu.h"
17 #include "qapi/error.h"
18 #include "exec/ramblock.h"
19 #include "exec/target_page.h"
20 #include "qemu/rcu_queue.h"
21 #include "qemu/main-loop.h"
22 #include "qapi/qapi-commands-migration.h"
25 #include "dirtyrate.h"
26 #include "monitor/hmp.h"
27 #include "monitor/monitor.h"
28 #include "qapi/qmp/qdict.h"
29 #include "sysemu/kvm.h"
30 #include "sysemu/runstate.h"
31 #include "exec/memory.h"
32 #include "qemu/xxhash.h"
35 * total_dirty_pages is procted by BQL and is used
36 * to stat dirty pages during the period of two
37 * memory_global_dirty_log_sync
39 uint64_t total_dirty_pages
;
41 typedef struct DirtyPageRecord
{
46 static int CalculatingState
= DIRTY_RATE_STATUS_UNSTARTED
;
47 static struct DirtyRateStat DirtyStat
;
48 static DirtyRateMeasureMode dirtyrate_mode
=
49 DIRTY_RATE_MEASURE_MODE_PAGE_SAMPLING
;
51 static int64_t dirty_stat_wait(int64_t msec
, int64_t initial_time
)
55 current_time
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
56 if ((current_time
- initial_time
) >= msec
) {
57 msec
= current_time
- initial_time
;
59 g_usleep((msec
+ initial_time
- current_time
) * 1000);
60 /* g_usleep may overshoot */
61 msec
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) - initial_time
;
67 static inline void record_dirtypages(DirtyPageRecord
*dirty_pages
,
68 CPUState
*cpu
, bool start
)
71 dirty_pages
[cpu
->cpu_index
].start_pages
= cpu
->dirty_pages
;
73 dirty_pages
[cpu
->cpu_index
].end_pages
= cpu
->dirty_pages
;
77 static int64_t do_calculate_dirtyrate(DirtyPageRecord dirty_pages
,
80 uint64_t increased_dirty_pages
=
81 dirty_pages
.end_pages
- dirty_pages
.start_pages
;
84 * multiply by 1000ms/s _before_ converting down to megabytes
85 * to avoid losing precision
87 return qemu_target_pages_to_MiB(increased_dirty_pages
* 1000) /
91 void global_dirty_log_change(unsigned int flag
, bool start
)
93 qemu_mutex_lock_iothread();
95 memory_global_dirty_log_start(flag
);
97 memory_global_dirty_log_stop(flag
);
99 qemu_mutex_unlock_iothread();
103 * global_dirty_log_sync
104 * 1. sync dirty log from kvm
105 * 2. stop dirty tracking if needed.
107 static void global_dirty_log_sync(unsigned int flag
, bool one_shot
)
109 qemu_mutex_lock_iothread();
110 memory_global_dirty_log_sync(false);
112 memory_global_dirty_log_stop(flag
);
114 qemu_mutex_unlock_iothread();
117 static DirtyPageRecord
*vcpu_dirty_stat_alloc(VcpuStat
*stat
)
127 stat
->rates
= g_new0(DirtyRateVcpu
, nvcpu
);
129 return g_new0(DirtyPageRecord
, nvcpu
);
132 static void vcpu_dirty_stat_collect(VcpuStat
*stat
,
133 DirtyPageRecord
*records
,
139 record_dirtypages(records
, cpu
, start
);
143 int64_t vcpu_calculate_dirtyrate(int64_t calc_time_ms
,
148 DirtyPageRecord
*records
;
149 int64_t init_time_ms
;
156 init_time_ms
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
158 WITH_QEMU_LOCK_GUARD(&qemu_cpu_list_lock
) {
159 gen_id
= cpu_list_generation_id_get();
160 records
= vcpu_dirty_stat_alloc(stat
);
161 vcpu_dirty_stat_collect(stat
, records
, true);
164 duration
= dirty_stat_wait(calc_time_ms
, init_time_ms
);
166 global_dirty_log_sync(flag
, one_shot
);
168 WITH_QEMU_LOCK_GUARD(&qemu_cpu_list_lock
) {
169 if (gen_id
!= cpu_list_generation_id_get()) {
175 vcpu_dirty_stat_collect(stat
, records
, false);
178 for (i
= 0; i
< stat
->nvcpu
; i
++) {
179 dirtyrate
= do_calculate_dirtyrate(records
[i
], duration
);
181 stat
->rates
[i
].id
= i
;
182 stat
->rates
[i
].dirty_rate
= dirtyrate
;
184 trace_dirtyrate_do_calculate_vcpu(i
, dirtyrate
);
192 static bool is_calc_time_valid(int64_t msec
)
194 if ((msec
< MIN_CALC_TIME_MS
) || (msec
> MAX_CALC_TIME_MS
)) {
201 static bool is_sample_pages_valid(int64_t pages
)
203 return pages
>= MIN_SAMPLE_PAGE_COUNT
&&
204 pages
<= MAX_SAMPLE_PAGE_COUNT
;
207 static int dirtyrate_set_state(int *state
, int old_state
, int new_state
)
209 assert(new_state
< DIRTY_RATE_STATUS__MAX
);
210 trace_dirtyrate_set_state(DirtyRateStatus_str(new_state
));
211 if (qatomic_cmpxchg(state
, old_state
, new_state
) == old_state
) {
218 /* Decimal power of given time unit relative to one second */
219 static int time_unit_to_power(TimeUnit time_unit
)
222 case TIME_UNIT_SECOND
:
224 case TIME_UNIT_MILLISECOND
:
227 assert(false); /* unreachable */
232 static int64_t convert_time_unit(int64_t value
, TimeUnit unit_from
,
235 int power
= time_unit_to_power(unit_from
) -
236 time_unit_to_power(unit_to
);
249 static struct DirtyRateInfo
*
250 query_dirty_rate_info(TimeUnit calc_time_unit
)
253 int64_t dirty_rate
= DirtyStat
.dirty_rate
;
254 struct DirtyRateInfo
*info
= g_new0(DirtyRateInfo
, 1);
255 DirtyRateVcpuList
*head
= NULL
, **tail
= &head
;
257 info
->status
= CalculatingState
;
258 info
->start_time
= DirtyStat
.start_time
;
259 info
->calc_time
= convert_time_unit(DirtyStat
.calc_time_ms
,
260 TIME_UNIT_MILLISECOND
,
262 info
->calc_time_unit
= calc_time_unit
;
263 info
->sample_pages
= DirtyStat
.sample_pages
;
264 info
->mode
= dirtyrate_mode
;
266 if (qatomic_read(&CalculatingState
) == DIRTY_RATE_STATUS_MEASURED
) {
267 info
->has_dirty_rate
= true;
268 info
->dirty_rate
= dirty_rate
;
270 if (dirtyrate_mode
== DIRTY_RATE_MEASURE_MODE_DIRTY_RING
) {
272 * set sample_pages with 0 to indicate page sampling
275 info
->sample_pages
= 0;
276 info
->has_vcpu_dirty_rate
= true;
277 for (i
= 0; i
< DirtyStat
.dirty_ring
.nvcpu
; i
++) {
278 DirtyRateVcpu
*rate
= g_new0(DirtyRateVcpu
, 1);
279 rate
->id
= DirtyStat
.dirty_ring
.rates
[i
].id
;
280 rate
->dirty_rate
= DirtyStat
.dirty_ring
.rates
[i
].dirty_rate
;
281 QAPI_LIST_APPEND(tail
, rate
);
283 info
->vcpu_dirty_rate
= head
;
286 if (dirtyrate_mode
== DIRTY_RATE_MEASURE_MODE_DIRTY_BITMAP
) {
287 info
->sample_pages
= 0;
291 trace_query_dirty_rate_info(DirtyRateStatus_str(CalculatingState
));
296 static void init_dirtyrate_stat(struct DirtyRateConfig config
)
298 DirtyStat
.dirty_rate
= -1;
299 DirtyStat
.start_time
= qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
300 DirtyStat
.calc_time_ms
= config
.calc_time_ms
;
301 DirtyStat
.sample_pages
= config
.sample_pages_per_gigabytes
;
303 switch (config
.mode
) {
304 case DIRTY_RATE_MEASURE_MODE_PAGE_SAMPLING
:
305 DirtyStat
.page_sampling
.total_dirty_samples
= 0;
306 DirtyStat
.page_sampling
.total_sample_count
= 0;
307 DirtyStat
.page_sampling
.total_block_mem_MB
= 0;
309 case DIRTY_RATE_MEASURE_MODE_DIRTY_RING
:
310 DirtyStat
.dirty_ring
.nvcpu
= -1;
311 DirtyStat
.dirty_ring
.rates
= NULL
;
318 static void cleanup_dirtyrate_stat(struct DirtyRateConfig config
)
320 /* last calc-dirty-rate qmp use dirty ring mode */
321 if (dirtyrate_mode
== DIRTY_RATE_MEASURE_MODE_DIRTY_RING
) {
322 free(DirtyStat
.dirty_ring
.rates
);
323 DirtyStat
.dirty_ring
.rates
= NULL
;
327 static void update_dirtyrate_stat(struct RamblockDirtyInfo
*info
)
329 DirtyStat
.page_sampling
.total_dirty_samples
+= info
->sample_dirty_count
;
330 DirtyStat
.page_sampling
.total_sample_count
+= info
->sample_pages_count
;
331 /* size of total pages in MB */
332 DirtyStat
.page_sampling
.total_block_mem_MB
+=
333 qemu_target_pages_to_MiB(info
->ramblock_pages
);
336 static void update_dirtyrate(uint64_t msec
)
339 uint64_t total_dirty_samples
= DirtyStat
.page_sampling
.total_dirty_samples
;
340 uint64_t total_sample_count
= DirtyStat
.page_sampling
.total_sample_count
;
341 uint64_t total_block_mem_MB
= DirtyStat
.page_sampling
.total_block_mem_MB
;
343 dirtyrate
= total_dirty_samples
* total_block_mem_MB
*
344 1000 / (total_sample_count
* msec
);
346 DirtyStat
.dirty_rate
= dirtyrate
;
350 * Compute hash of a single page of size TARGET_PAGE_SIZE.
352 static uint32_t compute_page_hash(void *ptr
)
354 size_t page_size
= qemu_target_page_size();
356 uint64_t v1
, v2
, v3
, v4
;
358 const uint64_t *p
= ptr
;
360 v1
= QEMU_XXHASH_SEED
+ XXH_PRIME64_1
+ XXH_PRIME64_2
;
361 v2
= QEMU_XXHASH_SEED
+ XXH_PRIME64_2
;
362 v3
= QEMU_XXHASH_SEED
+ 0;
363 v4
= QEMU_XXHASH_SEED
- XXH_PRIME64_1
;
364 for (i
= 0; i
< page_size
/ 8; i
+= 4) {
365 v1
= XXH64_round(v1
, p
[i
+ 0]);
366 v2
= XXH64_round(v2
, p
[i
+ 1]);
367 v3
= XXH64_round(v3
, p
[i
+ 2]);
368 v4
= XXH64_round(v4
, p
[i
+ 3]);
370 res
= XXH64_mergerounds(v1
, v2
, v3
, v4
);
372 res
= XXH64_avalanche(res
);
373 return (uint32_t)(res
& UINT32_MAX
);
378 * get hash result for the sampled memory with length of TARGET_PAGE_SIZE
379 * in ramblock, which starts from ramblock base address.
381 static uint32_t get_ramblock_vfn_hash(struct RamblockDirtyInfo
*info
,
386 hash
= compute_page_hash(info
->ramblock_addr
+
387 vfn
* qemu_target_page_size());
389 trace_get_ramblock_vfn_hash(info
->idstr
, vfn
, hash
);
393 static bool save_ramblock_hash(struct RamblockDirtyInfo
*info
)
395 unsigned int sample_pages_count
;
399 sample_pages_count
= info
->sample_pages_count
;
401 /* ramblock size less than one page, return success to skip this ramblock */
402 if (unlikely(info
->ramblock_pages
== 0 || sample_pages_count
== 0)) {
406 info
->hash_result
= g_try_malloc0_n(sample_pages_count
,
408 if (!info
->hash_result
) {
412 info
->sample_page_vfn
= g_try_malloc0_n(sample_pages_count
,
414 if (!info
->sample_page_vfn
) {
415 g_free(info
->hash_result
);
420 for (i
= 0; i
< sample_pages_count
; i
++) {
421 info
->sample_page_vfn
[i
] = g_rand_int_range(rand
, 0,
422 info
->ramblock_pages
- 1);
423 info
->hash_result
[i
] = get_ramblock_vfn_hash(info
,
424 info
->sample_page_vfn
[i
]);
431 static void get_ramblock_dirty_info(RAMBlock
*block
,
432 struct RamblockDirtyInfo
*info
,
433 struct DirtyRateConfig
*config
)
435 uint64_t sample_pages_per_gigabytes
= config
->sample_pages_per_gigabytes
;
437 /* Right shift 30 bits to calc ramblock size in GB */
438 info
->sample_pages_count
= (qemu_ram_get_used_length(block
) *
439 sample_pages_per_gigabytes
) >> 30;
440 /* Right shift TARGET_PAGE_BITS to calc page count */
441 info
->ramblock_pages
= qemu_ram_get_used_length(block
) >>
442 qemu_target_page_bits();
443 info
->ramblock_addr
= qemu_ram_get_host_addr(block
);
444 strcpy(info
->idstr
, qemu_ram_get_idstr(block
));
447 static void free_ramblock_dirty_info(struct RamblockDirtyInfo
*infos
, int count
)
455 for (i
= 0; i
< count
; i
++) {
456 g_free(infos
[i
].sample_page_vfn
);
457 g_free(infos
[i
].hash_result
);
462 static bool skip_sample_ramblock(RAMBlock
*block
)
465 * Sample only blocks larger than MIN_RAMBLOCK_SIZE.
467 if (qemu_ram_get_used_length(block
) < (MIN_RAMBLOCK_SIZE
<< 10)) {
468 trace_skip_sample_ramblock(block
->idstr
,
469 qemu_ram_get_used_length(block
));
476 static bool record_ramblock_hash_info(struct RamblockDirtyInfo
**block_dinfo
,
477 struct DirtyRateConfig config
,
480 struct RamblockDirtyInfo
*info
= NULL
;
481 struct RamblockDirtyInfo
*dinfo
= NULL
;
482 RAMBlock
*block
= NULL
;
487 RAMBLOCK_FOREACH_MIGRATABLE(block
) {
488 if (skip_sample_ramblock(block
)) {
494 dinfo
= g_try_malloc0_n(total_count
, sizeof(struct RamblockDirtyInfo
));
499 RAMBLOCK_FOREACH_MIGRATABLE(block
) {
500 if (skip_sample_ramblock(block
)) {
503 if (index
>= total_count
) {
506 info
= &dinfo
[index
];
507 get_ramblock_dirty_info(block
, info
, &config
);
508 if (!save_ramblock_hash(info
)) {
516 *block_count
= index
;
517 *block_dinfo
= dinfo
;
521 static void calc_page_dirty_rate(struct RamblockDirtyInfo
*info
)
526 for (i
= 0; i
< info
->sample_pages_count
; i
++) {
527 hash
= get_ramblock_vfn_hash(info
, info
->sample_page_vfn
[i
]);
528 if (hash
!= info
->hash_result
[i
]) {
529 trace_calc_page_dirty_rate(info
->idstr
, hash
, info
->hash_result
[i
]);
530 info
->sample_dirty_count
++;
535 static struct RamblockDirtyInfo
*
536 find_block_matched(RAMBlock
*block
, int count
,
537 struct RamblockDirtyInfo
*infos
)
541 for (i
= 0; i
< count
; i
++) {
542 if (!strcmp(infos
[i
].idstr
, qemu_ram_get_idstr(block
))) {
551 if (infos
[i
].ramblock_addr
!= qemu_ram_get_host_addr(block
) ||
552 infos
[i
].ramblock_pages
!=
553 (qemu_ram_get_used_length(block
) >> qemu_target_page_bits())) {
554 trace_find_page_matched(block
->idstr
);
561 static bool compare_page_hash_info(struct RamblockDirtyInfo
*info
,
564 struct RamblockDirtyInfo
*block_dinfo
= NULL
;
565 RAMBlock
*block
= NULL
;
567 RAMBLOCK_FOREACH_MIGRATABLE(block
) {
568 if (skip_sample_ramblock(block
)) {
571 block_dinfo
= find_block_matched(block
, block_count
, info
);
572 if (block_dinfo
== NULL
) {
575 calc_page_dirty_rate(block_dinfo
);
576 update_dirtyrate_stat(block_dinfo
);
579 if (DirtyStat
.page_sampling
.total_sample_count
== 0) {
586 static inline void record_dirtypages_bitmap(DirtyPageRecord
*dirty_pages
,
590 dirty_pages
->start_pages
= total_dirty_pages
;
592 dirty_pages
->end_pages
= total_dirty_pages
;
596 static inline void dirtyrate_manual_reset_protect(void)
598 RAMBlock
*block
= NULL
;
600 WITH_RCU_READ_LOCK_GUARD() {
601 RAMBLOCK_FOREACH_MIGRATABLE(block
) {
602 memory_region_clear_dirty_bitmap(block
->mr
, 0,
608 static void calculate_dirtyrate_dirty_bitmap(struct DirtyRateConfig config
)
611 DirtyPageRecord dirty_pages
;
613 qemu_mutex_lock_iothread();
614 memory_global_dirty_log_start(GLOBAL_DIRTY_DIRTY_RATE
);
617 * 1'round of log sync may return all 1 bits with
618 * KVM_DIRTY_LOG_INITIALLY_SET enable
619 * skip it unconditionally and start dirty tracking
620 * from 2'round of log sync
622 memory_global_dirty_log_sync(false);
625 * reset page protect manually and unconditionally.
626 * this make sure kvm dirty log be cleared if
627 * KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE cap is enabled.
629 dirtyrate_manual_reset_protect();
630 qemu_mutex_unlock_iothread();
632 record_dirtypages_bitmap(&dirty_pages
, true);
634 start_time
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
635 DirtyStat
.start_time
= qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
637 DirtyStat
.calc_time_ms
= dirty_stat_wait(config
.calc_time_ms
, start_time
);
641 * 1. fetch dirty bitmap from kvm
642 * 2. stop dirty tracking
644 global_dirty_log_sync(GLOBAL_DIRTY_DIRTY_RATE
, true);
646 record_dirtypages_bitmap(&dirty_pages
, false);
648 DirtyStat
.dirty_rate
= do_calculate_dirtyrate(dirty_pages
,
649 DirtyStat
.calc_time_ms
);
652 static void calculate_dirtyrate_dirty_ring(struct DirtyRateConfig config
)
654 uint64_t dirtyrate
= 0;
655 uint64_t dirtyrate_sum
= 0;
659 global_dirty_log_change(GLOBAL_DIRTY_DIRTY_RATE
, true);
661 DirtyStat
.start_time
= qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
663 /* calculate vcpu dirtyrate */
664 DirtyStat
.calc_time_ms
= vcpu_calculate_dirtyrate(config
.calc_time_ms
,
665 &DirtyStat
.dirty_ring
,
666 GLOBAL_DIRTY_DIRTY_RATE
,
669 /* calculate vm dirtyrate */
670 for (i
= 0; i
< DirtyStat
.dirty_ring
.nvcpu
; i
++) {
671 dirtyrate
= DirtyStat
.dirty_ring
.rates
[i
].dirty_rate
;
672 DirtyStat
.dirty_ring
.rates
[i
].dirty_rate
= dirtyrate
;
673 dirtyrate_sum
+= dirtyrate
;
676 DirtyStat
.dirty_rate
= dirtyrate_sum
;
679 static void calculate_dirtyrate_sample_vm(struct DirtyRateConfig config
)
681 struct RamblockDirtyInfo
*block_dinfo
= NULL
;
683 int64_t initial_time
;
686 initial_time
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
687 DirtyStat
.start_time
= qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
688 if (!record_ramblock_hash_info(&block_dinfo
, config
, &block_count
)) {
693 DirtyStat
.calc_time_ms
= dirty_stat_wait(config
.calc_time_ms
,
697 if (!compare_page_hash_info(block_dinfo
, block_count
)) {
701 update_dirtyrate(DirtyStat
.calc_time_ms
);
705 free_ramblock_dirty_info(block_dinfo
, block_count
);
708 static void calculate_dirtyrate(struct DirtyRateConfig config
)
710 if (config
.mode
== DIRTY_RATE_MEASURE_MODE_DIRTY_BITMAP
) {
711 calculate_dirtyrate_dirty_bitmap(config
);
712 } else if (config
.mode
== DIRTY_RATE_MEASURE_MODE_DIRTY_RING
) {
713 calculate_dirtyrate_dirty_ring(config
);
715 calculate_dirtyrate_sample_vm(config
);
718 trace_dirtyrate_calculate(DirtyStat
.dirty_rate
);
721 void *get_dirtyrate_thread(void *arg
)
723 struct DirtyRateConfig config
= *(struct DirtyRateConfig
*)arg
;
725 rcu_register_thread();
727 ret
= dirtyrate_set_state(&CalculatingState
, DIRTY_RATE_STATUS_UNSTARTED
,
728 DIRTY_RATE_STATUS_MEASURING
);
730 error_report("change dirtyrate state failed.");
734 calculate_dirtyrate(config
);
736 ret
= dirtyrate_set_state(&CalculatingState
, DIRTY_RATE_STATUS_MEASURING
,
737 DIRTY_RATE_STATUS_MEASURED
);
739 error_report("change dirtyrate state failed.");
742 rcu_unregister_thread();
746 void qmp_calc_dirty_rate(int64_t calc_time
,
747 bool has_calc_time_unit
,
748 TimeUnit calc_time_unit
,
749 bool has_sample_pages
,
750 int64_t sample_pages
,
752 DirtyRateMeasureMode mode
,
755 static struct DirtyRateConfig config
;
760 * If the dirty rate is already being measured, don't attempt to start.
762 if (qatomic_read(&CalculatingState
) == DIRTY_RATE_STATUS_MEASURING
) {
763 error_setg(errp
, "the dirty rate is already being measured.");
767 int64_t calc_time_ms
= convert_time_unit(
769 has_calc_time_unit
? calc_time_unit
: TIME_UNIT_SECOND
,
770 TIME_UNIT_MILLISECOND
773 if (!is_calc_time_valid(calc_time_ms
)) {
774 error_setg(errp
, "Calculation time is out of range [%dms, %dms].",
775 MIN_CALC_TIME_MS
, MAX_CALC_TIME_MS
);
780 mode
= DIRTY_RATE_MEASURE_MODE_PAGE_SAMPLING
;
783 if (has_sample_pages
&& mode
!= DIRTY_RATE_MEASURE_MODE_PAGE_SAMPLING
) {
784 error_setg(errp
, "sample-pages is used only in page-sampling mode");
788 if (has_sample_pages
) {
789 if (!is_sample_pages_valid(sample_pages
)) {
790 error_setg(errp
, "sample-pages is out of range[%d, %d].",
791 MIN_SAMPLE_PAGE_COUNT
,
792 MAX_SAMPLE_PAGE_COUNT
);
796 sample_pages
= DIRTYRATE_DEFAULT_SAMPLE_PAGES
;
800 * dirty ring mode only works when kvm dirty ring is enabled.
801 * on the contrary, dirty bitmap mode is not.
803 if (((mode
== DIRTY_RATE_MEASURE_MODE_DIRTY_RING
) &&
804 !kvm_dirty_ring_enabled()) ||
805 ((mode
== DIRTY_RATE_MEASURE_MODE_DIRTY_BITMAP
) &&
806 kvm_dirty_ring_enabled())) {
807 error_setg(errp
, "mode %s is not enabled, use other method instead.",
808 DirtyRateMeasureMode_str(mode
));
813 * Init calculation state as unstarted.
815 ret
= dirtyrate_set_state(&CalculatingState
, CalculatingState
,
816 DIRTY_RATE_STATUS_UNSTARTED
);
818 error_setg(errp
, "init dirty rate calculation state failed.");
822 config
.calc_time_ms
= calc_time_ms
;
823 config
.sample_pages_per_gigabytes
= sample_pages
;
826 cleanup_dirtyrate_stat(config
);
829 * update dirty rate mode so that we can figure out what mode has
830 * been used in last calculation
832 dirtyrate_mode
= mode
;
834 init_dirtyrate_stat(config
);
836 qemu_thread_create(&thread
, "get_dirtyrate", get_dirtyrate_thread
,
837 (void *)&config
, QEMU_THREAD_DETACHED
);
841 struct DirtyRateInfo
*qmp_query_dirty_rate(bool has_calc_time_unit
,
842 TimeUnit calc_time_unit
,
845 return query_dirty_rate_info(
846 has_calc_time_unit
? calc_time_unit
: TIME_UNIT_SECOND
);
849 void hmp_info_dirty_rate(Monitor
*mon
, const QDict
*qdict
)
851 DirtyRateInfo
*info
= query_dirty_rate_info(TIME_UNIT_SECOND
);
853 monitor_printf(mon
, "Status: %s\n",
854 DirtyRateStatus_str(info
->status
));
855 monitor_printf(mon
, "Start Time: %"PRIi64
" (ms)\n",
857 if (info
->mode
== DIRTY_RATE_MEASURE_MODE_PAGE_SAMPLING
) {
858 monitor_printf(mon
, "Sample Pages: %"PRIu64
" (per GB)\n",
861 monitor_printf(mon
, "Period: %"PRIi64
" (sec)\n",
863 monitor_printf(mon
, "Mode: %s\n",
864 DirtyRateMeasureMode_str(info
->mode
));
865 monitor_printf(mon
, "Dirty rate: ");
866 if (info
->has_dirty_rate
) {
867 monitor_printf(mon
, "%"PRIi64
" (MB/s)\n", info
->dirty_rate
);
868 if (info
->has_vcpu_dirty_rate
) {
869 DirtyRateVcpuList
*rate
, *head
= info
->vcpu_dirty_rate
;
870 for (rate
= head
; rate
!= NULL
; rate
= rate
->next
) {
871 monitor_printf(mon
, "vcpu[%"PRIi64
"], Dirty rate: %"PRIi64
872 " (MB/s)\n", rate
->value
->id
,
873 rate
->value
->dirty_rate
);
877 monitor_printf(mon
, "(not ready)\n");
880 qapi_free_DirtyRateVcpuList(info
->vcpu_dirty_rate
);
884 void hmp_calc_dirty_rate(Monitor
*mon
, const QDict
*qdict
)
886 int64_t sec
= qdict_get_try_int(qdict
, "second", 0);
887 int64_t sample_pages
= qdict_get_try_int(qdict
, "sample_pages_per_GB", -1);
888 bool has_sample_pages
= (sample_pages
!= -1);
889 bool dirty_ring
= qdict_get_try_bool(qdict
, "dirty_ring", false);
890 bool dirty_bitmap
= qdict_get_try_bool(qdict
, "dirty_bitmap", false);
891 DirtyRateMeasureMode mode
= DIRTY_RATE_MEASURE_MODE_PAGE_SAMPLING
;
895 monitor_printf(mon
, "Incorrect period length specified!\n");
899 if (dirty_ring
&& dirty_bitmap
) {
900 monitor_printf(mon
, "Either dirty ring or dirty bitmap "
901 "can be specified!\n");
906 mode
= DIRTY_RATE_MEASURE_MODE_DIRTY_BITMAP
;
907 } else if (dirty_ring
) {
908 mode
= DIRTY_RATE_MEASURE_MODE_DIRTY_RING
;
911 qmp_calc_dirty_rate(sec
, /* calc-time */
912 false, TIME_UNIT_SECOND
, /* calc-time-unit */
913 has_sample_pages
, sample_pages
,
917 hmp_handle_error(mon
, err
);
921 monitor_printf(mon
, "Starting dirty rate measurement with period %"PRIi64
923 monitor_printf(mon
, "[Please use 'info dirty_rate' to check results]\n");