All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: Fabiano Rosas <farosas@suse.de>
Cc: qemu-devel@nongnu.org,  berrange@redhat.com,  armbru@redhat.com,
	 Peter Xu <peterx@redhat.com>,  Eric Blake <eblake@redhat.com>
Subject: Re: [PATCH v2 04/24] migration: Remove MigrateSetParameters
Date: Tue, 01 Jul 2025 10:00:37 +0200	[thread overview]
Message-ID: <87jz4s1gt6.fsf@pond.sub.org> (raw)
In-Reply-To: <20250630195913.28033-5-farosas@suse.de> (Fabiano Rosas's message of "Mon, 30 Jun 2025 16:58:53 -0300")

Fabiano Rosas <farosas@suse.de> writes:

> Now that the TLS options have been made the same between
> migrate-set-parameters and query-migrate-parameters, a single type can
> be used. Remove MigrateSetParameters.
>
> The TLS options documentation from MigrationParameters were replaced
> with the ones from MigrateSetParameters which was more complete.
>
> Signed-off-by: Fabiano Rosas <farosas@suse.de>

[...]

> diff --git a/qapi/migration.json b/qapi/migration.json
> index 97bb022c45..3788c39857 100644
> --- a/qapi/migration.json
> +++ b/qapi/migration.json
> @@ -914,206 +914,10 @@
>             'zero-page-detection',
>             'direct-io'] }
>  
> -##
> -# @MigrateSetParameters:

[...]

>  ##
>  # @migrate-set-parameters:
>  #
> -# Set various migration parameters.
> +# Set migration parameters.  All fields are optional.

Use "arguments" instead of "fields".

>  #
>  # Since: 2.4
>  #
> @@ -1124,13 +928,11 @@
>  #     <- { "return": {} }
>  ##
>  { 'command': 'migrate-set-parameters', 'boxed': true,
> -  'data': 'MigrateSetParameters' }
> +  'data': 'MigrationParameters' }
>  
>  ##
>  # @MigrationParameters:
>  #
> -# The optional members aren't actually optional.
> -#
>  # @announce-initial: Initial delay (in milliseconds) before sending
>  #     the first announce (Since 4.0)
>  #
> @@ -1148,12 +950,12 @@
>  #     percentage.  The default value is 50.  (Since 5.0)
>  #
>  # @cpu-throttle-initial: Initial percentage of time guest cpus are
> -#     throttled when migration auto-converge is activated.
> -#     (Since 2.7)
> +#     throttled when migration auto-converge is activated.  The
> +#     default value is 20.  (Since 2.7)
>  #
>  # @cpu-throttle-increment: throttle percentage increase each time
>  #     auto-converge detects that migration is not making progress.
> -#     (Since 2.7)
> +#     The default value is 10.  (Since 2.7)
>  #
>  # @cpu-throttle-tailslow: Make CPU throttling slower at tail stage.
>  #     At the tail stage of throttling, the Guest is very sensitive to
> @@ -1172,21 +974,25 @@
>  #     for establishing a TLS connection over the migration data
>  #     channel.  On the outgoing side of the migration, the credentials
>  #     must be for a 'client' endpoint, while for the incoming side the
> -#     credentials must be for a 'server' endpoint.  An empty string
> -#     means that QEMU will use plain text mode for migration, rather
> -#     than TLS.  (Since 2.7)
> -#
> -#     Note: 2.8 omits empty @tls-creds instead.
> +#     credentials must be for a 'server' endpoint.  Setting this to a
> +#     non-empty string enables TLS for all migrations.  An empty
> +#     string means that QEMU will use plain text mode for migration,
> +#     rather than TLS.  This is the default.  (Since 2.7)
>  #
>  # @tls-hostname: migration target's hostname for validating the
>  #     server's x509 certificate identity.  If empty, QEMU will use the
> -#     hostname from the migration URI, if any.  (Since 2.7)
> +#     hostname from the migration URI, if any.  A non-empty value is
> +#     required when using x509 based TLS credentials and the migration
> +#     URI does not include a hostname, such as fd: or exec: based
> +#     migration.  (Since 2.7)
>  #
> -#     Note: 2.8 omits empty @tls-hostname instead.
> +#     Note: empty value works only since 2.9.
>  #
>  # @tls-authz: ID of the 'authz' object subclass that provides access
>  #     control checking of the TLS x509 certificate distinguished name.
> -#     (Since 4.0)
> +#     This object is only resolved at time of use, so can be deleted
> +#     and recreated on the fly while the migration server is active.
> +#     If missing, it will default to denying access (Since 4.0)
>  #
>  # @max-bandwidth: maximum speed for migration, in bytes per second.
>  #     (Since 2.8)
> @@ -1205,8 +1011,8 @@
>  # @downtime-limit: set maximum tolerated downtime for migration.
>  #     maximum downtime in milliseconds (Since 2.8)
>  #
> -# @x-checkpoint-delay: the delay time between two COLO checkpoints.
> -#     (Since 2.8)
> +# @x-checkpoint-delay: the delay time between two COLO checkpoints in
> +#     periodic mode.  (Since 2.8)
>  #
>  # @multifd-channels: Number of channels used to migrate data in
>  #     parallel.  This is the same number that the number of sockets

Please add

   ##
   # @query-migrate-parameters:
   #
  -# Return information about the current migration parameters
  +# Return information about the current migration parameters.
  +# Optional members of the return value are always present.
   #
   # Returns: @MigrationParameters
   #
   # Since: 2.4
   #

and double-check "always" is actually true.

With that, QAPI schema
Acked-by: Markus Armbruster <armbru@redhat.com>



  reply	other threads:[~2025-07-01  8:02 UTC|newest]

Thread overview: 79+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-30 19:58 [PATCH v2 00/24] migration: Unify capabilities and parameters Fabiano Rosas
2025-06-30 19:58 ` [PATCH v2 01/24] migration: Fix leak of block_bitmap_mapping Fabiano Rosas
2025-07-01  6:12   ` Markus Armbruster
2025-07-03 21:31     ` Peter Xu
2025-07-04  5:09       ` Markus Armbruster
2025-06-30 19:58 ` [PATCH v2 02/24] migration: Add a qdev property for StrOrNull Fabiano Rosas
2025-07-01  6:38   ` Markus Armbruster
2025-07-03 22:32     ` Peter Xu
2025-07-04 12:58       ` Fabiano Rosas
2025-06-30 19:58 ` [PATCH v2 03/24] migration: Normalize tls arguments Fabiano Rosas
2025-07-01  7:46   ` Markus Armbruster
2025-07-01 14:20     ` Fabiano Rosas
2025-07-04 13:12       ` Fabiano Rosas
2025-07-04 15:37         ` Peter Xu
2025-08-20 15:45           ` Fabiano Rosas
2025-10-15  2:31   ` Bin Guo
2025-10-23 14:29     ` Fabiano Rosas
2025-06-30 19:58 ` [PATCH v2 04/24] migration: Remove MigrateSetParameters Fabiano Rosas
2025-07-01  8:00   ` Markus Armbruster [this message]
2025-07-03 19:34     ` Fabiano Rosas
2025-07-04  4:25       ` Markus Armbruster
2025-07-04 15:39   ` Peter Xu
2025-06-30 19:58 ` [PATCH v2 05/24] qapi/migration: Don't document MigrationParameter Fabiano Rosas
2025-07-01  8:04   ` Markus Armbruster
2025-07-04 15:40   ` Peter Xu
2025-06-30 19:58 ` [PATCH v2 06/24] migration: Run a post update routine after setting parameters Fabiano Rosas
2025-10-13  6:10   ` Bin Guo
2025-10-23 14:30     ` Fabiano Rosas
2025-06-30 19:58 ` [PATCH v2 07/24] migration: Add a flag to track block-bitmap-mapping input Fabiano Rosas
2025-07-04 15:42   ` Peter Xu
2025-06-30 19:58 ` [PATCH v2 08/24] migration: Remove checks for s->parameters has_* fields Fabiano Rosas
2025-06-30 19:58 ` [PATCH v2 09/24] migration: Do away with usage of QERR_INVALID_PARAMETER_VALUE Fabiano Rosas
2025-07-04 16:04   ` Peter Xu
2025-06-30 19:58 ` [PATCH v2 10/24] migration: Extract code to mark all parameters as present Fabiano Rosas
2025-06-30 19:59 ` [PATCH v2 11/24] migration: Use QAPI_CLONE_MEMBERS in query_migrate_parameters Fabiano Rosas
2025-07-04 16:11   ` Peter Xu
2025-06-30 19:59 ` [PATCH v2 12/24] migration: Use QAPI_CLONE_MEMBERS in migrate_params_test_apply Fabiano Rosas
2025-06-30 19:59 ` [PATCH v2 13/24] migration: Use QAPI_CLONE_MEMBERS in migrate_params_apply Fabiano Rosas
2025-08-13 19:05   ` Peter Xu
2025-08-14 15:04     ` Fabiano Rosas
2025-06-30 19:59 ` [PATCH v2 14/24] migration: Use visitors in migrate_params_test_apply Fabiano Rosas
2025-08-13 20:05   ` Peter Xu
2025-08-14 15:10     ` Fabiano Rosas
2025-08-14 19:40       ` Peter Xu
2025-10-15  2:16   ` Bin Guo
2025-10-23 14:46     ` Fabiano Rosas
2025-06-30 19:59 ` [PATCH v2 15/24] migration: Cleanup hmp_info_migrate_parameters Fabiano Rosas
2025-08-13 20:40   ` Peter Xu
2025-06-30 19:59 ` [PATCH v2 16/24] migration: Add capabilities into MigrationParameters Fabiano Rosas
2025-07-01  8:25   ` Markus Armbruster
2025-07-04 13:15     ` Fabiano Rosas
2025-07-04 14:04       ` Markus Armbruster
2025-07-04 14:48         ` Fabiano Rosas
2025-07-04 15:04           ` Markus Armbruster
2025-07-04 16:33   ` Peter Xu
2025-06-30 19:59 ` [PATCH v2 17/24] migration: Remove s->capabilities Fabiano Rosas
2025-08-13 20:48   ` Peter Xu
2025-06-30 19:59 ` [PATCH v2 18/24] qapi/migration: Deprecate capabilities commands Fabiano Rosas
2025-07-01  8:30   ` Markus Armbruster
2025-07-01  8:38   ` Jiri Denemark
2025-07-01  9:00     ` Peter Krempa
2025-07-01  9:10     ` Daniel P. Berrangé
2025-08-13 20:50   ` Peter Xu
2025-06-30 19:59 ` [PATCH v2 19/24] migration: Store the initial values used for s->parameters Fabiano Rosas
2025-08-13 21:09   ` Peter Xu
2025-06-30 19:59 ` [PATCH v2 20/24] migration: Allow migrate commands to provide the migration config Fabiano Rosas
2025-07-01  8:35   ` Markus Armbruster
2025-08-13 21:27   ` Peter Xu
2025-08-14 15:13     ` Fabiano Rosas
2025-06-30 19:59 ` [PATCH v2 21/24] tests/qtest/migration: Take reference when passing %p to qtest_qmp Fabiano Rosas
2025-08-13 22:22   ` Peter Xu
2025-08-21 17:20     ` Fabiano Rosas
2025-06-30 19:59 ` [PATCH v2 22/24] tests/qtest/migration: Adapt the capabilities helper to take a config Fabiano Rosas
2025-08-14 14:02   ` Peter Xu
2025-06-30 19:59 ` [PATCH v2 23/24] tests/qtest/migration: Adapt convergence routines to config Fabiano Rosas
2025-06-30 19:59 ` [PATCH v2 24/24] tests/qtest/migration: Pass the migration config to file tests Fabiano Rosas
2025-08-14 14:24   ` Peter Xu
2025-08-14 15:30     ` Fabiano Rosas
2025-08-14 19:45       ` Peter Xu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87jz4s1gt6.fsf@pond.sub.org \
    --to=armbru@redhat.com \
    --cc=berrange@redhat.com \
    --cc=eblake@redhat.com \
    --cc=farosas@suse.de \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.