qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 08/11] migration: remove check against colo s


From: Zhang Chen
Subject: Re: [Qemu-devel] [PATCH v2 08/11] migration: remove check against colo support
Date: Tue, 18 Jul 2017 15:13:11 +0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1



On 07/17/2017 04:26 PM, Peter Xu wrote:
Since commit a15215f3 ("build: remove --enable-colo/--disable-colo"),
colo is always supported. We don't need any colo_supported() now since
it is always true. Removing any extra code that depends on it.

CC: Paolo Bonzini <address@hidden>
CC: Hailiang Zhang <address@hidden>
Signed-off-by: Peter Xu <address@hidden>

COLO running well.

Reviewed-by: Zhang Chen<address@hidden>


Thanks
Zhang Chen

---
  include/migration/colo.h |  1 -
  migration/colo.c         |  5 -----
  migration/migration.c    | 11 -----------
  3 files changed, 17 deletions(-)

diff --git a/include/migration/colo.h b/include/migration/colo.h
index be6beba..ff9874e 100644
--- a/include/migration/colo.h
+++ b/include/migration/colo.h
@@ -15,7 +15,6 @@
#include "qemu-common.h" -bool colo_supported(void);
  void colo_info_init(void);
void migrate_start_colo_process(MigrationState *s);
diff --git a/migration/colo.c b/migration/colo.c
index ef35f00..a425543 100644
--- a/migration/colo.c
+++ b/migration/colo.c
@@ -29,11 +29,6 @@ static bool vmstate_loading;
#define COLO_BUFFER_BASE_SIZE (4 * 1024 * 1024) -bool colo_supported(void)
-{
-    return true;
-}
-
  bool migration_in_colo_state(void)
  {
      MigrationState *s = migrate_get_current();
diff --git a/migration/migration.c b/migration/migration.c
index 5a7f22c..eb750c5 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -403,9 +403,6 @@ MigrationCapabilityStatusList 
*qmp_query_migrate_capabilities(Error **errp)
              continue;
          }
  #endif
-        if (i == MIGRATION_CAPABILITY_X_COLO && !colo_supported()) {
-            continue;
-        }
          if (head == NULL) {
              head = g_malloc0(sizeof(*caps));
              caps = head;
@@ -604,14 +601,6 @@ void 
qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
              continue;
          }
  #endif
-        if (cap->value->capability == MIGRATION_CAPABILITY_X_COLO) {
-            if (!colo_supported()) {
-                error_setg(errp, "COLO is not currently supported, please"
-                             " configure with --enable-colo option in order to"
-                             " support COLO feature");
-                continue;
-            }
-        }
          s->enabled_capabilities[cap->value->capability] = cap->value->state;
      }

--
Thanks
Zhang Chen






reply via email to

[Prev in Thread] Current Thread [Next in Thread]