summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorRao, Lei <lei.rao@intel.com>2021-11-01 15:56:59 +0800
committerJuan Quintela <quintela@trasno.org>2021-11-03 09:38:53 +0100
commitae4c2099351a6ea5774428a0884ace32595b341c (patch)
treecc59ead17276a904de8498ffe794ce0b6cb0896c
parent02abee3d5129e1430af35ba4a174980a5a22d64e (diff)
downloadfocaccia-qemu-ae4c2099351a6ea5774428a0884ace32595b341c.tar.gz
focaccia-qemu-ae4c2099351a6ea5774428a0884ace32595b341c.zip
Some minor optimizations for COLO
Signed-off-by: Lei Rao <lei.rao@intel.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
-rw-r--r--migration/colo.c2
-rw-r--r--net/colo-compare.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/migration/colo.c b/migration/colo.c
index 79fa1f6619..616dc00af7 100644
--- a/migration/colo.c
+++ b/migration/colo.c
@@ -152,7 +152,7 @@ static void primary_vm_do_failover(void)
      * kick COLO thread which might wait at
      * qemu_sem_wait(&s->colo_checkpoint_sem).
      */
-    colo_checkpoint_notify(migrate_get_current());
+    colo_checkpoint_notify(s);
 
     /*
      * Wake up COLO thread which may blocked in recv() or send(),
diff --git a/net/colo-compare.c b/net/colo-compare.c
index b100e7b51f..4a64a5d386 100644
--- a/net/colo-compare.c
+++ b/net/colo-compare.c
@@ -170,7 +170,7 @@ static bool packet_matches_str(const char *str,
         return false;
     }
 
-    return !memcmp(str, buf, strlen(str));
+    return !memcmp(str, buf, packet_len);
 }
 
 static void notify_remote_frame(CompareState *s)