diff options
| author | Steve Sistare <steven.sistare@oracle.com> | 2024-03-11 10:48:52 -0700 |
|---|---|---|
| committer | Peter Xu <peterx@redhat.com> | 2024-03-11 16:28:59 -0400 |
| commit | 714f33123bfc73c6caacd19a44e082da8cdc96e3 (patch) | |
| tree | b185dd3e99ecc11639ee71bfc15c11805e41d1c2 /migration/options.c | |
| parent | aeaafb1e59f81f5cc715e656dac23f3fe5db3faa (diff) | |
| download | focaccia-qemu-714f33123bfc73c6caacd19a44e082da8cdc96e3.tar.gz focaccia-qemu-714f33123bfc73c6caacd19a44e082da8cdc96e3.zip | |
migration: export vcpu_dirty_limit_period
Define and export vcpu_dirty_limit_period to eliminate a dependency on MigrationState. Signed-off-by: Steve Sistare <steven.sistare@oracle.com> Link: https://lore.kernel.org/r/1710179338-294359-6-git-send-email-steven.sistare@oracle.com Signed-off-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'migration/options.c')
| -rw-r--r-- | migration/options.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/migration/options.c b/migration/options.c index 642cfb00a3..09178c6f60 100644 --- a/migration/options.c +++ b/migration/options.c @@ -924,6 +924,13 @@ const char *migrate_tls_hostname(void) return s->parameters.tls_hostname; } +uint64_t migrate_vcpu_dirty_limit_period(void) +{ + MigrationState *s = migrate_get_current(); + + return s->parameters.x_vcpu_dirty_limit_period; +} + uint64_t migrate_xbzrle_cache_size(void) { MigrationState *s = migrate_get_current(); |