diff options
author | Hyman Huang(黄勇) | 2022-06-25 19:38:34 +0200 |
---|---|---|
committer | Dr. David Alan Gilbert | 2022-07-20 13:15:08 +0200 |
commit | 4a06a7cc053deae16864359a5149bcb4442f8d2a (patch) | |
tree | 65ef59c2c8e88b7bdc537b0c6c790e8f26274324 /accel/kvm | |
parent | softmmu/dirtylimit: Implement vCPU dirtyrate calculation periodically (diff) | |
download | qemu-4a06a7cc053deae16864359a5149bcb4442f8d2a.tar.gz qemu-4a06a7cc053deae16864359a5149bcb4442f8d2a.tar.xz qemu-4a06a7cc053deae16864359a5149bcb4442f8d2a.zip |
accel/kvm/kvm-all: Introduce kvm_dirty_ring_size function
Introduce kvm_dirty_ring_size util function to help calculate
dirty ring ful time.
Signed-off-by: Hyman Huang(黄勇) <huangy81@chinatelecom.cn>
Acked-by: Peter Xu <peterx@redhat.com>
Message-Id: <f9ce1f550bfc0e3a1f711e17b1dbc8f701700e56.1656177590.git.huangy81@chinatelecom.cn>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'accel/kvm')
-rw-r--r-- | accel/kvm/kvm-all.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c index ce989a68ff..184aecab5c 100644 --- a/accel/kvm/kvm-all.c +++ b/accel/kvm/kvm-all.c @@ -2318,6 +2318,11 @@ static void query_stats_cb(StatsResultList **result, StatsTarget target, strList *names, strList *targets, Error **errp); static void query_stats_schemas_cb(StatsSchemaList **result, Error **errp); +uint32_t kvm_dirty_ring_size(void) +{ + return kvm_state->kvm_dirty_ring_size; +} + static int kvm_init(MachineState *ms) { MachineClass *mc = MACHINE_GET_CLASS(ms); |