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>
This commit is contained in:
parent
02abee3d51
commit
ae4c209935
@ -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(),
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user