From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:48738) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gufyg-00023R-KE for qemu-devel@nongnu.org; Fri, 15 Feb 2019 11:04:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gufyW-00027d-OA for qemu-devel@nongnu.org; Fri, 15 Feb 2019 11:04:34 -0500 Received: from 5.mo5.mail-out.ovh.net ([87.98.173.103]:60631) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gufyP-00022P-3e for qemu-devel@nongnu.org; Fri, 15 Feb 2019 11:04:23 -0500 Received: from player793.ha.ovh.net (unknown [10.109.146.175]) by mo5.mail-out.ovh.net (Postfix) with ESMTP id 9BE0E21C54D for ; Fri, 15 Feb 2019 17:04:17 +0100 (CET) Date: Fri, 15 Feb 2019 17:03:59 +0100 From: Greg Kurz Message-ID: <20190215170359.352765a9@bahia.lan> In-Reply-To: <20190215133005.15955-7-david@redhat.com> References: <20190215133005.15955-1-david@redhat.com> <20190215133005.15955-7-david@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 6/6] tests/device-plug: Add memory unplug request test for spapr List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: David Hildenbrand Cc: qemu-devel@nongnu.org, qemu-s390x@nongnu.org, qemu-ppc@nongnu.org, Paolo Bonzini , Peter Crosthwaite , Richard Henderson , David Gibson , Thomas Huth , Laurent Vivier , Cornelia Huck , Collin Walling , Pierre Morel , "Michael S . Tsirkin" , Marcel Apfelbaum , Igor Mammedov , Eduardo Habkost On Fri, 15 Feb 2019 14:30:05 +0100 David Hildenbrand wrote: > We can easily test this, just like PCI. > > Signed-off-by: David Hildenbrand > --- Reviewed-by: Greg Kurz > tests/device-plug-test.c | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > > diff --git a/tests/device-plug-test.c b/tests/device-plug-test.c > index ec6cb5de7b..4c581319c0 100644 > --- a/tests/device-plug-test.c > +++ b/tests/device-plug-test.c > @@ -116,6 +116,22 @@ static void test_spapr_cpu_unplug_request(void) > qtest_quit(qtest); > } > > +static void test_spapr_memory_unplug_request(void) > +{ > + QTestState *qtest; > + > + qtest = qtest_initf("-m 1G,slots=1,maxmem=2G " > + "-object memory-backend-ram,id=mem0,size=1G " > + "-device pc-dimm,id=dev0,memdev=mem0"); > + > + /* 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(); > @@ -140,5 +156,10 @@ int main(int argc, char **argv) > test_spapr_cpu_unplug_request); > } > > + if (!strcmp(arch, "ppc64")) { > + qtest_add_func("/device-plug/spapr_memory_unplug_request", > + test_spapr_memory_unplug_request); > + } > + > return g_test_run(); > }