mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
3ddba9a9e9
Commit8118f0950f
"migration: Append JSON description of migration stream" needs a JSON writer. The existing qobject_to_json() wasn't a good fit, because it requires building a QObject to convert. Instead, migration got its very own JSON writer, in commit190c882ce2
"QJSON: Add JSON writer". It tacitly limits numbers to int64_t, and strings contents to characters that don't need escaping, unlike qobject_to_json(). The previous commit factored the JSON writer out of qobject_to_json(). Replace migration's JSON writer by it. Cc: Juan Quintela <quintela@redhat.com> Cc: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20201211171152.146877-17-armbru@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
34 lines
760 B
Meson
34 lines
760 B
Meson
# Files needed by unit tests
|
|
migration_files = files(
|
|
'page_cache.c',
|
|
'xbzrle.c',
|
|
'vmstate-types.c',
|
|
'vmstate.c',
|
|
'qemu-file-channel.c',
|
|
'qemu-file.c',
|
|
)
|
|
softmmu_ss.add(migration_files)
|
|
|
|
softmmu_ss.add(files(
|
|
'block-dirty-bitmap.c',
|
|
'channel.c',
|
|
'colo-failover.c',
|
|
'colo.c',
|
|
'exec.c',
|
|
'fd.c',
|
|
'global_state.c',
|
|
'migration.c',
|
|
'multifd.c',
|
|
'multifd-zlib.c',
|
|
'postcopy-ram.c',
|
|
'savevm.c',
|
|
'socket.c',
|
|
'tls.c',
|
|
))
|
|
|
|
softmmu_ss.add(when: ['CONFIG_RDMA', rdma], if_true: files('rdma.c'))
|
|
softmmu_ss.add(when: 'CONFIG_LIVE_BLOCK_MIGRATION', if_true: files('block.c'))
|
|
softmmu_ss.add(when: 'CONFIG_ZSTD', if_true: [files('multifd-zstd.c'), zstd])
|
|
|
|
specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: files('dirtyrate.c', 'ram.c'))
|