summary refs log tree commit diff stats
path: root/migration/migration.c
diff options
context:
space:
mode:
authorLaurent Vivier <lvivier@redhat.com>2021-12-20 15:53:14 +0100
committerThomas Huth <thuth@redhat.com>2021-12-22 08:12:45 +0100
commit1b529d908d1e97ac154ab0e68573f8c211aac3f1 (patch)
tree8a08ef81f1032b18e83db711d87f521f35add79b /migration/migration.c
parent8c5f94cd4182753959c8be8de415120dc879d8f0 (diff)
downloadfocaccia-qemu-1b529d908d1e97ac154ab0e68573f8c211aac3f1.tar.gz
focaccia-qemu-1b529d908d1e97ac154ab0e68573f8c211aac3f1.zip
failover: Silence warning messages during qtest
virtio-net-failover test tries several device combinations that produces
some expected warnings.
These warning can be confusing, so we disable them during the qtest
sequence.

Reported-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Message-Id: <20211220145314.390697-1-lvivier@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
[thuth: Fix memory leak by using error_free()]
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'migration/migration.c')
-rw-r--r--migration/migration.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/migration/migration.c b/migration/migration.c
index 3de11ae921..0652165610 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -60,6 +60,7 @@
 #include "qemu/yank.h"
 #include "sysemu/cpus.h"
 #include "yank_functions.h"
+#include "sysemu/qtest.h"
 
 #define MAX_THROTTLE  (128 << 20)      /* Migration transfer speed throttling */
 
@@ -3766,7 +3767,8 @@ static void qemu_savevm_wait_unplug(MigrationState *s, int old_state,
             while (timeout-- && qemu_savevm_state_guest_unplug_pending()) {
                 qemu_sem_timedwait(&s->wait_unplug_sem, 250);
             }
-            if (qemu_savevm_state_guest_unplug_pending()) {
+            if (qemu_savevm_state_guest_unplug_pending() &&
+                !qtest_enabled()) {
                 warn_report("migration: partially unplugged device on "
                             "failure");
             }