aboutsummaryrefslogtreecommitdiff
path: root/migration/options.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2024-03-12 15:13:41 +0100
committerMarkus Armbruster <armbru@redhat.com>2024-04-24 09:50:58 +0200
commit45d19d9306ade96404905aa89d534fc989ff9389 (patch)
tree642b9e25686d68ab916f9a029e3a0700a817f626 /migration/options.c
parentef929281f1ddb1ce74f5fe39377a88e6cc8237aa (diff)
downloadqemu-45d19d9306ade96404905aa89d534fc989ff9389.zip
qemu-45d19d9306ade96404905aa89d534fc989ff9389.tar.gz
qemu-45d19d9306ade96404905aa89d534fc989ff9389.tar.bz2
qapi: Correct error message for 'vcpu_dirty_limit' parameter
QERR_INVALID_PARAMETER_VALUE is defined as: #define QERR_INVALID_PARAMETER_VALUE \ "Parameter '%s' expects %s" The current error is formatted as: "Parameter 'vcpu_dirty_limit' expects is invalid, it must greater then 1 MB/s" Replace by: "Parameter 'vcpu_dirty_limit' must be greater than 1 MB/s" Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-ID: <20240312141343.3168265-9-armbru@redhat.com> Reviewed-by: Zhao Liu <zhao1.liu@intel.com> [New error message corrected, commit message updated accordingly]
Diffstat (limited to 'migration/options.c')
-rw-r--r--migration/options.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/migration/options.c b/migration/options.c
index bfd7753..d7a773a 100644
--- a/migration/options.c
+++ b/migration/options.c
@@ -1286,9 +1286,8 @@ bool migrate_params_check(MigrationParameters *params, Error **errp)
if (params->has_vcpu_dirty_limit &&
(params->vcpu_dirty_limit < 1)) {
- error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
- "vcpu_dirty_limit",
- "is invalid, it must greater then 1 MB/s");
+ error_setg(errp,
+ "Parameter 'vcpu_dirty_limit' must be greater than 1 MB/s");
return false;
}