提交 1bda8b3c 编写于 作者: M Markus Armbruster

migration: Unshare MigrationParameters struct for now

Commit de63ab61 "migrate: Share common MigrationParameters struct"
reused MigrationParameters for the arguments of
migrate-set-parameters, with the following rationale:

    It is rather verbose, and slightly error-prone, to repeat
    the same set of parameters for input (migrate-set-parameters)
    as for output (query-migrate-parameters), where the only
    difference is whether the members are optional.  We can just
    document that the optional members will always be present
    on output, and then share a common struct between both
    commands.  The next patch can then reduce the amount of
    code needed on input.

I need to unshare them to correct a design flaw in a stupid, but
minimally invasive way, in the next commit.  We can restore the
sharing when we redo that patch in a less stupid way.  Add a suitable
TODO comment.

Note that I revert only the sharing part of commit de63ab61, not the
part that made the members of query-migrate-parameters' result
optional.  The schema (and thus introspection) remains inaccurate for
query-migrate-parameters.  If we decide not to restore the sharing, we
should revert that part, too.
Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
Reviewed-by: NDaniel P. Berrange <berrange@redhat.com>
Reviewed-by: NEric Blake <eblake@redhat.com>
上级 e87fae4c
...@@ -1556,7 +1556,7 @@ void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict) ...@@ -1556,7 +1556,7 @@ void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict)
const char *param = qdict_get_str(qdict, "parameter"); const char *param = qdict_get_str(qdict, "parameter");
const char *valuestr = qdict_get_str(qdict, "value"); const char *valuestr = qdict_get_str(qdict, "value");
Visitor *v = string_input_visitor_new(valuestr); Visitor *v = string_input_visitor_new(valuestr);
MigrationParameters *p = g_new0(MigrationParameters, 1); MigrateSetParameters *p = g_new0(MigrateSetParameters, 1);
uint64_t valuebw = 0; uint64_t valuebw = 0;
Error *err = NULL; Error *err = NULL;
int i, ret; int i, ret;
...@@ -1634,7 +1634,7 @@ void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict) ...@@ -1634,7 +1634,7 @@ void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict)
} }
cleanup: cleanup:
qapi_free_MigrationParameters(p); qapi_free_MigrateSetParameters(p);
visit_free(v); visit_free(v);
if (err) { if (err) {
error_report_err(err); error_report_err(err);
......
...@@ -742,7 +742,59 @@ static bool migrate_params_check(MigrationParameters *params, Error **errp) ...@@ -742,7 +742,59 @@ static bool migrate_params_check(MigrationParameters *params, Error **errp)
return true; return true;
} }
static void migrate_params_apply(MigrationParameters *params) static void migrate_params_test_apply(MigrateSetParameters *params,
MigrationParameters *dest)
{
*dest = migrate_get_current()->parameters;
/* TODO use QAPI_CLONE() instead of duplicating it inline */
if (params->has_compress_level) {
dest->compress_level = params->compress_level;
}
if (params->has_compress_threads) {
dest->compress_threads = params->compress_threads;
}
if (params->has_decompress_threads) {
dest->decompress_threads = params->decompress_threads;
}
if (params->has_cpu_throttle_initial) {
dest->cpu_throttle_initial = params->cpu_throttle_initial;
}
if (params->has_cpu_throttle_increment) {
dest->cpu_throttle_increment = params->cpu_throttle_increment;
}
if (params->has_tls_creds) {
dest->tls_creds = g_strdup(params->tls_creds);
}
if (params->has_tls_hostname) {
dest->tls_hostname = g_strdup(params->tls_hostname);
}
if (params->has_max_bandwidth) {
dest->max_bandwidth = params->max_bandwidth;
}
if (params->has_downtime_limit) {
dest->downtime_limit = params->downtime_limit;
}
if (params->has_x_checkpoint_delay) {
dest->x_checkpoint_delay = params->x_checkpoint_delay;
}
if (params->has_block_incremental) {
dest->block_incremental = params->block_incremental;
}
}
static void migrate_params_apply(MigrateSetParameters *params)
{ {
MigrationState *s = migrate_get_current(); MigrationState *s = migrate_get_current();
...@@ -802,9 +854,13 @@ static void migrate_params_apply(MigrationParameters *params) ...@@ -802,9 +854,13 @@ static void migrate_params_apply(MigrationParameters *params)
} }
} }
void qmp_migrate_set_parameters(MigrationParameters *params, Error **errp) void qmp_migrate_set_parameters(MigrateSetParameters *params, Error **errp)
{ {
if (!migrate_params_check(params, errp)) { MigrationParameters tmp;
migrate_params_test_apply(params, &tmp);
if (!migrate_params_check(&tmp, errp)) {
/* Invalid parameter */ /* Invalid parameter */
return; return;
} }
...@@ -1240,7 +1296,7 @@ int64_t qmp_query_migrate_cache_size(Error **errp) ...@@ -1240,7 +1296,7 @@ int64_t qmp_query_migrate_cache_size(Error **errp)
void qmp_migrate_set_speed(int64_t value, Error **errp) void qmp_migrate_set_speed(int64_t value, Error **errp)
{ {
MigrationParameters p = { MigrateSetParameters p = {
.has_max_bandwidth = true, .has_max_bandwidth = true,
.max_bandwidth = value, .max_bandwidth = value,
}; };
...@@ -1260,7 +1316,7 @@ void qmp_migrate_set_downtime(double value, Error **errp) ...@@ -1260,7 +1316,7 @@ void qmp_migrate_set_downtime(double value, Error **errp)
value *= 1000; /* Convert to milliseconds */ value *= 1000; /* Convert to milliseconds */
value = MAX(0, MIN(INT64_MAX, value)); value = MAX(0, MIN(INT64_MAX, value));
MigrationParameters p = { MigrateSetParameters p = {
.has_downtime_limit = true, .has_downtime_limit = true,
.downtime_limit = value, .downtime_limit = value,
}; };
......
...@@ -1034,6 +1034,77 @@ ...@@ -1034,6 +1034,77 @@
'tls-creds', 'tls-hostname', 'max-bandwidth', 'tls-creds', 'tls-hostname', 'max-bandwidth',
'downtime-limit', 'x-checkpoint-delay', 'block-incremental' ] } 'downtime-limit', 'x-checkpoint-delay', 'block-incremental' ] }
##
# @MigrateSetParameters:
#
# @compress-level: compression level
#
# @compress-threads: compression thread count
#
# @decompress-threads: decompression thread count
#
# @cpu-throttle-initial: Initial percentage of time guest cpus are
# 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. The default value is 10. (Since 2.7)
#
# @tls-creds: ID of the 'tls-creds' object that provides credentials
# 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. 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 (Since 2.9)
# Previously (since 2.7), this was reported by omitting
# tls-creds instead.
#
# @tls-hostname: hostname of the target host for the migration. This
# is required when using x509 based TLS credentials and the
# migration URI does not already include a hostname. For
# example if using fd: or exec: based migration, the
# hostname must be provided so that the server's x509
# certificate identity can be validated. (Since 2.7)
# An empty string means that QEMU will use the hostname
# associated with the migration URI, if any. (Since 2.9)
# Previously (since 2.7), this was reported by omitting
# tls-hostname instead.
#
# @max-bandwidth: to set maximum speed for migration. maximum speed in
# bytes per second. (Since 2.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)
#
# @block-incremental: Affects how much storage is migrated when the
# block migration capability is enabled. When false, the entire
# storage backing chain is migrated into a flattened image at
# the destination; when true, only the active qcow2 layer is
# migrated and the destination must already have access to the
# same backing chain as was used on the source. (since 2.10)
#
# Since: 2.4
##
# TODO either fuse back into MigrationParameters, or make
# MigrationParameters members mandatory
{ 'struct': 'MigrateSetParameters',
'data': { '*compress-level': 'int',
'*compress-threads': 'int',
'*decompress-threads': 'int',
'*cpu-throttle-initial': 'int',
'*cpu-throttle-increment': 'int',
'*tls-creds': 'str',
'*tls-hostname': 'str',
'*max-bandwidth': 'int',
'*downtime-limit': 'int',
'*x-checkpoint-delay': 'int',
'*block-incremental': 'bool' } }
## ##
# @migrate-set-parameters: # @migrate-set-parameters:
# #
...@@ -1048,13 +1119,12 @@ ...@@ -1048,13 +1119,12 @@
# #
## ##
{ 'command': 'migrate-set-parameters', 'boxed': true, { 'command': 'migrate-set-parameters', 'boxed': true,
'data': 'MigrationParameters' } 'data': 'MigrateSetParameters' }
## ##
# @MigrationParameters: # @MigrationParameters:
# #
# Optional members can be omitted on input ('migrate-set-parameters') # The optional members aren't actually optional.
# but members will always be present on output.
# #
# @compress-level: compression level # @compress-level: compression level
# #
...@@ -1063,19 +1133,18 @@ ...@@ -1063,19 +1133,18 @@
# @decompress-threads: decompression thread count # @decompress-threads: decompression thread count
# #
# @cpu-throttle-initial: Initial percentage of time guest cpus are # @cpu-throttle-initial: Initial percentage of time guest cpus are
# throttledwhen migration auto-converge is activated. # throttled when migration auto-converge is activated.
# The default value is 20. (Since 2.7) # (Since 2.7)
# #
# @cpu-throttle-increment: throttle percentage increase each time # @cpu-throttle-increment: throttle percentage increase each time
# auto-converge detects that migration is not making # auto-converge detects that migration is not making
# progress. The default value is 10. (Since 2.7) # progress. (Since 2.7)
# #
# @tls-creds: ID of the 'tls-creds' object that provides credentials # @tls-creds: ID of the 'tls-creds' object that provides credentials
# for establishing a TLS connection over the migration data # for establishing a TLS connection over the migration data
# channel. On the outgoing side of the migration, the credentials # channel. On the outgoing side of the migration, the credentials
# must be for a 'client' endpoint, while for the incoming side the # must be for a 'client' endpoint, while for the incoming side the
# credentials must be for a 'server' endpoint. Setting this # credentials must be for a 'server' endpoint.
# to a non-empty string enables TLS for all migrations.
# An empty string means that QEMU will use plain text mode for # An empty string means that QEMU will use plain text mode for
# migration, rather than TLS (Since 2.7) # migration, rather than TLS (Since 2.7)
# Note: 2.8 reports this by omitting tls-creds instead. # Note: 2.8 reports this by omitting tls-creds instead.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册