diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2022-06-20 12:01:53 +0100 |
---|---|---|
committer | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2022-06-22 19:33:43 +0100 |
commit | 65cf200a51ddc6d0a28ecceac30dc892233cddd7 (patch) | |
tree | 7958741e0b838d1c18059c2846f7a6e69ff9cb78 /migration/meson.build | |
parent | bc698c367d6fac15454ee3ff6bb168e43c151465 (diff) |
migration: introduce a QIOChannel impl for BlockDriverState VMState
Introduce a QIOChannelBlock class that exposes the BlockDriverState
VMState region for I/O.
This is kept in the migration/ directory rather than io/, to avoid
a mutual dependancy between block/ <-> io/ directories. Also the
VMState should only be used by the migration code.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
dgilbert: Fixed coding style in qio_channel_block_close
Diffstat (limited to 'migration/meson.build')
-rw-r--r-- | migration/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/migration/meson.build b/migration/meson.build index 6880b61b10..8d309f5849 100644 --- a/migration/meson.build +++ b/migration/meson.build @@ -13,6 +13,7 @@ softmmu_ss.add(migration_files) softmmu_ss.add(files( 'block-dirty-bitmap.c', 'channel.c', + 'channel-block.c', 'colo-failover.c', 'colo.c', 'exec.c', |