diff options
| author | Mao Zhongyi | 2020-03-31 10:22:07 +0200 |
|---|---|---|
| committer | Dr. David Alan Gilbert | 2020-05-07 18:40:24 +0200 |
| commit | 7ac5529afba7b4e9c4d9d1cbeb2b607208af97c1 (patch) | |
| tree | 2e57bf72a323980aa2e1f3e1c1382330d24b55c7 /migration | |
| parent | monitor/hmp-cmds: add hmp_handle_error() for hmp_migrate_set_speed() (diff) | |
| download | qemu-7ac5529afba7b4e9c4d9d1cbeb2b607208af97c1.tar.gz qemu-7ac5529afba7b4e9c4d9d1cbeb2b607208af97c1.tar.xz qemu-7ac5529afba7b4e9c4d9d1cbeb2b607208af97c1.zip | |
migration: move the units of migrate parameters from milliseconds to ms
Signed-off-by: Mao Zhongyi <maozhongyi@cmss.chinamobile.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Message-Id: <474bb6cf67defb8be9de5035c11aee57a680557a.1585641083.git.maozhongyi@cmss.chinamobile.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'migration')
| -rw-r--r-- | migration/migration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/migration.c b/migration/migration.c index 6e079efdcc..79f16f6625 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -1214,7 +1214,7 @@ static bool migrate_params_check(MigrationParameters *params, Error **errp) error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "downtime_limit", "an integer in the range of 0 to " - stringify(MAX_MIGRATE_DOWNTIME)" milliseconds"); + stringify(MAX_MIGRATE_DOWNTIME)" ms"); return false; } |
