]> Git Repo - qemu.git/commitdiff
migrate: Fix bounds check for migration parameters in migration.c
authorAshijeet Acharya <[email protected]>
Fri, 9 Sep 2016 21:13:17 +0000 (02:43 +0530)
committerJuan Quintela <[email protected]>
Thu, 13 Oct 2016 15:23:53 +0000 (17:23 +0200)
This patch fixes the out-of-bounds check of migration parameters in
qmp_migrate_set_parameters() for cpu-throttle-initial and
cpu-throttle-increment by adding a return statement for both as they
were broken since their introduction in 2.5 via commit 1626fee.
Due to the missing return statements, parameters were getting set to
out-of-bounds values despite the error.

Signed-off-by: Ashijeet Acharya <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
Reviewed-by: Amit Shah <[email protected]>
Reviewed-by: Juan Quintela <[email protected]>
Signed-off-by: Juan Quintela <[email protected]>
migration/migration.c

index 42336e3bfdbf252a2aa32371954f1e3e00359dea..04b706f69ec73808ec564513365a05471a7095b8 100644 (file)
@@ -796,6 +796,7 @@ void qmp_migrate_set_parameters(MigrationParameters *params, Error **errp)
         error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
                    "cpu_throttle_initial",
                    "an integer in the range of 1 to 99");
+        return;
     }
     if (params->has_cpu_throttle_increment &&
         (params->cpu_throttle_increment < 1 ||
@@ -803,6 +804,7 @@ void qmp_migrate_set_parameters(MigrationParameters *params, Error **errp)
         error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
                    "cpu_throttle_increment",
                    "an integer in the range of 1 to 99");
+        return;
     }
 
     if (params->has_compress_level) {
This page took 0.028593 seconds and 4 git commands to generate.