[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PATCH v3 5/6] tests/device-plug: Add CPU core unplug reque
From: |
David Hildenbrand |
Subject: |
[qemu-s390x] [PATCH v3 5/6] tests/device-plug: Add CPU core unplug request test for spapr |
Date: |
Mon, 18 Feb 2019 10:22:01 +0100 |
We can easily test this, just like PCI. On s390x, cpu unplug is not
supported. On x86 ACPI, cpu unplug requires guest interaction to work, so
it can't be tested that easily. We might add tests for ACPI later.
Reviewed-by: Michael S. Tsirkin <address@hidden>
Reviewed-by: Greg Kurz <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>
Signed-off-by: David Hildenbrand <address@hidden>
---
tests/device-plug-test.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/tests/device-plug-test.c b/tests/device-plug-test.c
index d1a6c94af2..0262ad6be6 100644
--- a/tests/device-plug-test.c
+++ b/tests/device-plug-test.c
@@ -101,6 +101,21 @@ static void test_ccw_unplug(void)
qtest_quit(qtest);
}
+static void test_spapr_cpu_unplug_request(void)
+{
+ QTestState *qtest;
+
+ qtest = qtest_initf("-cpu power9_v2.0 -smp 1,maxcpus=2 "
+ "-device
power9_v2.0-spapr-cpu-core,core-id=1,id=dev0");
+
+ /* similar to test_pci_unplug_request */
+ device_del_request(qtest, "dev0");
+ system_reset(qtest);
+ wait_device_deleted_event(qtest, "dev0");
+
+ qtest_quit(qtest);
+}
+
int main(int argc, char **argv)
{
const char *arch = qtest_get_arch();
@@ -120,5 +135,10 @@ int main(int argc, char **argv)
test_ccw_unplug);
}
+ if (!strcmp(arch, "ppc64")) {
+ qtest_add_func("/device-plug/spapr-cpu-unplug-request",
+ test_spapr_cpu_unplug_request);
+ }
+
return g_test_run();
}
--
2.17.2
- [qemu-s390x] [PATCH v3 0/6] tests: Add device unplug tests, David Hildenbrand, 2019/02/18
- [qemu-s390x] [PATCH v3 1/6] cpus: Properly release the iothread lock when killing a dummy VCPU, David Hildenbrand, 2019/02/18
- [qemu-s390x] [PATCH v3 2/6] spapr: support memory unplug for qtest, David Hildenbrand, 2019/02/18
- [qemu-s390x] [PATCH v3 6/6] tests/device-plug: Add memory unplug request test for spapr, David Hildenbrand, 2019/02/18
- [qemu-s390x] [PATCH v3 4/6] tests/device-plug: Add CCW unplug test for s390x, David Hildenbrand, 2019/02/18
- [qemu-s390x] [PATCH v3 5/6] tests/device-plug: Add CPU core unplug request test for spapr,
David Hildenbrand <=
- [qemu-s390x] [PATCH v3 3/6] tests/device-plug: Add a simple PCI unplug request test, David Hildenbrand, 2019/02/18
- Re: [qemu-s390x] [PATCH v3 0/6] tests: Add device unplug tests, David Gibson, 2019/02/18