[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v14 02/14] fixup! migration: New QAPI type 'MigrateAddress'
|
From: |
Daniel P . Berrangé |
|
Subject: |
Re: [PATCH v14 02/14] fixup! migration: New QAPI type 'MigrateAddress' |
|
Date: |
Mon, 23 Oct 2023 12:56:54 +0100 |
|
User-agent: |
Mutt/2.2.9 (2022-11-12) |
On Thu, Oct 19, 2023 at 04:23:41PM -0300, Fabiano Rosas wrote:
> Signed-off-by: Fabiano Rosas <farosas@suse.de>
> ---
> qapi/migration.json | 20 ++++++++++++++++++--
> 1 file changed, 18 insertions(+), 2 deletions(-)
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
from a functional POV, and assuming Markus' feedback
will be included.
>
> diff --git a/qapi/migration.json b/qapi/migration.json
> index c352c7ac52..602cb706e3 100644
> --- a/qapi/migration.json
> +++ b/qapi/migration.json
> @@ -1519,10 +1519,25 @@
> #
> # @rdma: Migrate via RDMA.
> #
> +# @file: Direct the migration stream to a file.
> +#
> # Since 8.2
> ##
> { 'enum': 'MigrationAddressType',
> - 'data': ['socket', 'exec', 'rdma'] }
> + 'data': ['socket', 'exec', 'rdma', 'file'] }
> +
> +##
> +# @FileMigrationArgs:
> +#
> +# @path: file path
> +#
> +# @offset: initial offset for the file
> +#
> +# Since 8.2
> +##
> +{ 'struct': 'FileMigrationArgs',
> + 'data': {'path': 'str',
> + 'offset': 'uint64' } }
>
> ##
> # @MigrationExecCommand:
> @@ -1547,7 +1562,8 @@
> 'data': {
> 'socket': 'SocketAddress',
> 'exec': 'MigrationExecCommand',
> - 'rdma': 'InetSocketAddress' } }
> + 'rdma': 'InetSocketAddress',
> + 'file': 'FileMigrationArgs' } }
>
> ##
> # @migrate:
> --
> 2.35.3
>
With regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
- [PATCH v14 00/14] migration: Modify 'migrate' and 'migrate-incoming' QAPI commands for migration, Fabiano Rosas, 2023/10/19
- [PATCH v14 01/14] migration: New QAPI type 'MigrateAddress', Fabiano Rosas, 2023/10/19
- [PATCH v14 02/14] fixup! migration: New QAPI type 'MigrateAddress', Fabiano Rosas, 2023/10/19
- Re: [PATCH v14 02/14] fixup! migration: New QAPI type 'MigrateAddress', Markus Armbruster, 2023/10/20
- Re: [PATCH v14 02/14] fixup! migration: New QAPI type 'MigrateAddress', Fabiano Rosas, 2023/10/20
- Re: [PATCH v14 02/14] fixup! migration: New QAPI type 'MigrateAddress', Markus Armbruster, 2023/10/20
- Re: [PATCH v14 02/14] fixup! migration: New QAPI type 'MigrateAddress', Daniel P . Berrangé, 2023/10/20
- Should we replace QAPI? (was: [PATCH v14 02/14] fixup! migration: New QAPI type 'MigrateAddress'), Markus Armbruster, 2023/10/23
- Re: Should we replace QAPI? (was: [PATCH v14 02/14] fixup! migration: New QAPI type 'MigrateAddress'), Daniel P . Berrangé, 2023/10/23
Re: [PATCH v14 02/14] fixup! migration: New QAPI type 'MigrateAddress',
Daniel P . Berrangé <=
[PATCH v14 03/14] migration: convert migration 'uri' into 'MigrateAddress', Fabiano Rosas, 2023/10/19
[PATCH v14 04/14] fixup! migration: convert migration 'uri' into 'MigrateAddress', Fabiano Rosas, 2023/10/19
[PATCH v14 05/14] migration: convert socket backend to accept MigrateAddress, Fabiano Rosas, 2023/10/19
[PATCH v14 06/14] migration: convert rdma backend to accept MigrateAddress, Fabiano Rosas, 2023/10/19
[PATCH v14 07/14] migration: convert exec backend to accept MigrateAddress., Fabiano Rosas, 2023/10/19
[PATCH v14 08/14] migration: Convert the file backend the new QAPI syntax, Fabiano Rosas, 2023/10/19
[PATCH v14 09/14] migration: New migrate and migrate-incoming argument 'channels', Fabiano Rosas, 2023/10/19
[PATCH v14 10/14] fixup! migration: New migrate and migrate-incoming argument 'channels', Fabiano Rosas, 2023/10/19