Lines Matching full:migration
3 * Test for s390x CMMA migration
196 TEST_ASSERT(!r, "enabling migration mode failed r=%d errno=%d", r, errno); in enable_migration_mode()
209 TEST_ASSERT(!r, "getting migration mode status failed r=%d errno=%d", r, errno); in is_migration_mode_on()
248 /* GET_CMMA_BITS without migration mode and without peeking should fail */ in test_get_cmma_basic()
253 /* GET_CMMA_BITS without migration mode and with peeking should work */ in test_get_cmma_basic()
284 /* enabling migration mode on a VM without memory should fail */ in test_migration_mode()
288 TEST_ASSERT(!is_migration_mode_on(vm), "migration mode should still be off"); in test_migration_mode()
305 /* migration mode when memslots have dirty tracking off should fail */ in test_migration_mode()
309 TEST_ASSERT(!is_migration_mode_on(vm), "migration mode should still be off"); in test_migration_mode()
315 /* enabling migration mode should work now */ in test_migration_mode()
318 TEST_ASSERT(is_migration_mode_on(vm), "migration mode should be on"); in test_migration_mode()
327 * With migration mode on, create a new memslot with dirty tracking off. in test_migration_mode()
328 * This should turn off migration mode. in test_migration_mode()
330 TEST_ASSERT(is_migration_mode_on(vm), "migration mode should be on"); in test_migration_mode()
339 "creating memslot without dirty tracking turns off migration mode" in test_migration_mode()
349 * It should be possible to turn migration mode back on again. in test_migration_mode()
354 TEST_ASSERT(is_migration_mode_on(vm), "migration mode should be on"); in test_migration_mode()
359 * Again, migration mode should turn off. in test_migration_mode()
361 TEST_ASSERT(is_migration_mode_on(vm), "migration mode should be on"); in test_migration_mode()
364 "disabling dirty tracking should turn off migration mode" in test_migration_mode()
657 { "migration mode and dirty tracking", test_migration_mode },