Lines Matching full:migration

3  * Test for s390x CMMA migration
191 TEST_ASSERT(!r, "enabling migration mode failed r=%d errno=%d", r, errno); in enable_migration_mode()
204 TEST_ASSERT(!r, "getting migration mode status failed r=%d errno=%d", r, errno); in is_migration_mode_on()
243 /* GET_CMMA_BITS without migration mode and without peeking should fail */ in test_get_cmma_basic()
248 /* GET_CMMA_BITS without migration mode and with peeking should work */ in test_get_cmma_basic()
279 /* enabling migration mode on a VM without memory should fail */ in test_migration_mode()
283 TEST_ASSERT(!is_migration_mode_on(vm), "migration mode should still be off"); in test_migration_mode()
300 /* migration mode when memslots have dirty tracking off should fail */ in test_migration_mode()
304 TEST_ASSERT(!is_migration_mode_on(vm), "migration mode should still be off"); in test_migration_mode()
310 /* enabling migration mode should work now */ in test_migration_mode()
313 TEST_ASSERT(is_migration_mode_on(vm), "migration mode should be on"); in test_migration_mode()
322 * With migration mode on, create a new memslot with dirty tracking off. in test_migration_mode()
323 * This should turn off migration mode. in test_migration_mode()
325 TEST_ASSERT(is_migration_mode_on(vm), "migration mode should be on"); in test_migration_mode()
334 "creating memslot without dirty tracking turns off migration mode" in test_migration_mode()
344 * It should be possible to turn migration mode back on again. in test_migration_mode()
349 TEST_ASSERT(is_migration_mode_on(vm), "migration mode should be on"); in test_migration_mode()
354 * Again, migration mode should turn off. in test_migration_mode()
356 TEST_ASSERT(is_migration_mode_on(vm), "migration mode should be on"); in test_migration_mode()
359 "disabling dirty tracking should turn off migration mode" in test_migration_mode()
652 { "migration mode and dirty tracking", test_migration_mode },