diff options
author | Juan Quintela <quintela@redhat.com> | 2023-03-02 12:55:57 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2023-04-27 16:37:28 +0200 |
commit | f9436522c8dd35a51f6d796501de7fd4d4928481 (patch) | |
tree | b4a4fca92f919342f1859f5608576239c7aa72cc /migration/options.h | |
parent | b804b35b1c8a0edfd127ac20819c234be55ac7fc (diff) |
migration: Move migration_properties to options.c
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Diffstat (limited to 'migration/options.h')
-rw-r--r-- | migration/options.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/migration/options.h b/migration/options.h index 9bcb9e558c..00854d60f9 100644 --- a/migration/options.h +++ b/migration/options.h @@ -14,6 +14,9 @@ #ifndef QEMU_MIGRATION_OPTIONS_H #define QEMU_MIGRATION_OPTIONS_H +#include "hw/qdev-properties.h" +#include "hw/qdev-properties-system.h" + /* constants */ /* Amount of time to allocate to each "chunk" of bandwidth-throttled @@ -21,6 +24,10 @@ #define BUFFER_DELAY 100 #define XFER_LIMIT_RATIO (1000 / BUFFER_DELAY) +/* migration properties */ + +extern Property migration_properties[]; + /* capabilities */ bool migrate_auto_converge(void); |