mirror of https://gitee.com/openkylin/qemu.git
migrate: Fix cpu-throttle-increment regression in HMP
Commit 69ef1f3
accidentally broke migrate_set_parameter's ability
to set the cpu-throttle-increment to anything other than the
default, because it forgot to parse the user's string into an
integer.
CC: qemu-stable@nongnu.org
Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
cd5ea07064
commit
bb2b777cf9
1
hmp.c
1
hmp.c
|
@ -1351,6 +1351,7 @@ void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict)
|
||||||
break;
|
break;
|
||||||
case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT:
|
case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT:
|
||||||
has_cpu_throttle_increment = true;
|
has_cpu_throttle_increment = true;
|
||||||
|
use_int_value = true;
|
||||||
break;
|
break;
|
||||||
case MIGRATION_PARAMETER_TLS_CREDS:
|
case MIGRATION_PARAMETER_TLS_CREDS:
|
||||||
has_tls_creds = true;
|
has_tls_creds = true;
|
||||||
|
|
Loading…
Reference in New Issue