qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Steve Sistare <steven.sistare@oracle.com>
To: qemu-devel@nongnu.org
Cc: "Juan Quintela" <quintela@redhat.com>,
	"Peter Xu" <peterx@redhat.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Thomas Huth" <thuth@redhat.com>,
	"Daniel P. Berrangé" <berrange@redhat.com>,
	"Fabiano Rosas" <farosas@suse.de>,
	"Leonardo Bras" <leobras@redhat.com>,
	"Steve Sistare" <steven.sistare@oracle.com>
Subject: [PATCH V7 12/12] tests/qtest: postcopy migration with suspend
Date: Wed,  6 Dec 2023 09:12:50 -0800	[thread overview]
Message-ID: <1701882772-356078-25-git-send-email-steven.sistare@oracle.com> (raw)
In-Reply-To: <1701882772-356078-1-git-send-email-steven.sistare@oracle.com>

Add a test case to verify that the suspended state is handled correctly by
live migration postcopy.  The test suspends the src, migrates, then wakes
the dest.

Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
---
 tests/qtest/migration-test.c | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/tests/qtest/migration-test.c b/tests/qtest/migration-test.c
index f57a978..b7c094e 100644
--- a/tests/qtest/migration-test.c
+++ b/tests/qtest/migration-test.c
@@ -1347,6 +1347,7 @@ static int migrate_postcopy_prepare(QTestState **from_ptr,
 
     /* Wait for the first serial output from the source */
     wait_for_serial("src_serial");
+    wait_for_suspend(from, &src_state);
 
     g_autofree char *uri = migrate_get_socket_address(to, "socket-address");
     migrate_qmp(from, uri, "{}");
@@ -1364,6 +1365,11 @@ static void migrate_postcopy_complete(QTestState *from, QTestState *to,
 {
     wait_for_migration_complete(from);
 
+    if (args->start.suspend_me) {
+        /* wakeup succeeds only if guest is suspended */
+        qtest_qmp_assert_success(to, "{'execute': 'system_wakeup'}");
+    }
+
     /* Make sure we get at least one "B" on destination */
     wait_for_serial("dest_serial");
 
@@ -1397,6 +1403,15 @@ static void test_postcopy(void)
     test_postcopy_common(&args);
 }
 
+static void test_postcopy_suspend(void)
+{
+    MigrateCommon args = {
+        .start.suspend_me = true,
+    };
+
+    test_postcopy_common(&args);
+}
+
 static void test_postcopy_compress(void)
 {
     MigrateCommon args = {
@@ -3412,7 +3427,10 @@ int main(int argc, char **argv)
         qtest_add_func("/migration/postcopy/recovery/double-failures",
                        test_postcopy_recovery_double_fail);
 #endif /* _WIN32 */
-
+        if (is_x86) {
+            qtest_add_func("/migration/postcopy/suspend",
+                           test_postcopy_suspend);
+        }
     }
 
     qtest_add_func("/migration/bad_dest", test_baddest);
-- 
1.8.3.1



  parent reply	other threads:[~2023-12-06 17:14 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-06 17:12 [PATCH V7 00/12] fix migration of suspended runstate Steve Sistare
2023-12-06 17:12 ` [PATCH V7 01/12] cpus: vm_was_suspended Steve Sistare
2023-12-06 17:12 ` [PATCH 01/14] temporary: define CLONE_NEWCGROUP qemu-8.2.0 Steve Sistare
2023-12-06 17:12 ` [PATCH V7 02/12] cpus: stop vm in suspended runstate Steve Sistare
2023-12-06 17:12 ` [PATCH 02/14] temp: allow python 3.6 qemu-8.2 Steve Sistare
2023-12-06 17:12 ` [PATCH V7 03/12] cpus: check running not RUN_STATE_RUNNING Steve Sistare
2023-12-06 17:12 ` [PATCH 03/14] cpus: vm_was_suspended Steve Sistare
2023-12-06 17:12 ` [PATCH 04/14] cpus: stop vm in suspended runstate Steve Sistare
2023-12-06 17:12 ` [PATCH V7 04/12] cpus: vm_resume Steve Sistare
2023-12-06 17:12 ` [PATCH 05/14] cpus: check running not RUN_STATE_RUNNING Steve Sistare
2023-12-06 17:12 ` [PATCH V7 05/12] migration: propagate suspended runstate Steve Sistare
2023-12-06 17:12 ` [PATCH 06/14] cpus: vm_resume Steve Sistare
2023-12-06 17:12 ` [PATCH V7 06/12] migration: preserve suspended runstate Steve Sistare
2023-12-06 17:12 ` [PATCH V7 07/12] migration: preserve suspended for snapshot Steve Sistare
2023-12-06 17:12 ` [PATCH 07/14] migration: propagate suspended runstate Steve Sistare
2023-12-06 17:12 ` [PATCH V7 08/12] migration: preserve suspended for bg_migration Steve Sistare
2023-12-06 17:12 ` [PATCH 08/14] migration: preserve suspended runstate Steve Sistare
2023-12-06 17:12 ` [PATCH 09/14] migration: preserve suspended for snapshot Steve Sistare
2023-12-06 17:12 ` [PATCH V7 09/12] tests/qtest: migration events Steve Sistare
2023-12-06 17:12 ` [PATCH 10/14] migration: preserve suspended for bg_migration Steve Sistare
2023-12-06 17:12 ` [PATCH V7 10/12] tests/qtest: option to suspend during migration Steve Sistare
2023-12-06 17:12 ` [PATCH 11/14] tests/qtest: migration events Steve Sistare
2023-12-06 17:12 ` [PATCH V7 11/12] tests/qtest: precopy migration with suspend Steve Sistare
2023-12-06 17:12 ` [PATCH 12/14] tests/qtest: option to suspend during migration Steve Sistare
2023-12-06 17:12 ` Steve Sistare [this message]
2023-12-06 17:12 ` [PATCH 13/14] tests/qtest: precopy migration with suspend Steve Sistare
2023-12-06 17:12 ` [PATCH 14/14] tests/qtest: postcopy " Steve Sistare
2023-12-06 17:16 ` [PATCH V7 00/12] fix migration of suspended runstate Steven Sistare
  -- strict thread matches above, loose matches on Subject: below --
2023-12-06 17:23 Steve Sistare
2023-12-06 17:23 ` [PATCH V7 12/12] tests/qtest: postcopy migration with suspend Steve Sistare
2023-12-11  6:54   ` Peter Xu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1701882772-356078-25-git-send-email-steven.sistare@oracle.com \
    --to=steven.sistare@oracle.com \
    --cc=berrange@redhat.com \
    --cc=farosas@suse.de \
    --cc=leobras@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    --cc=thuth@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).