From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34414) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eM6CL-00058m-KA for qemu-devel@nongnu.org; Tue, 05 Dec 2017 00:55:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eM6CJ-0002eA-0T for qemu-devel@nongnu.org; Tue, 05 Dec 2017 00:55:17 -0500 Received: from mx1.redhat.com ([209.132.183.28]:49424) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eM6CI-0002dW-Ge for qemu-devel@nongnu.org; Tue, 05 Dec 2017 00:55:14 -0500 From: Peter Xu Date: Tue, 5 Dec 2017 13:51:57 +0800 Message-Id: <20171205055200.16305-24-peterx@redhat.com> In-Reply-To: <20171205055200.16305-1-peterx@redhat.com> References: <20171205055200.16305-1-peterx@redhat.com> Subject: [Qemu-devel] [RFC v5 23/26] qmp: add command "x-oob-test" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Hajnoczi , "Daniel P . Berrange" , Paolo Bonzini , Fam Zheng , Juan Quintela , mdroth@linux.vnet.ibm.com, peterx@redhat.com, Eric Blake , Laurent Vivier , Markus Armbruster , marcandre.lureau@redhat.com, "Dr . David Alan Gilbert" This command is only used to test OOB functionality. It should not be used for any other purposes. Signed-off-by: Peter Xu --- qapi-schema.json | 18 ++++++++++++++++++ qmp.c | 16 ++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/qapi-schema.json b/qapi-schema.json index 9d2625b6b3..5bd59bd266 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3256,3 +3256,21 @@ ## { 'event': 'REQUEST_DROPPED' , 'data': { 'id': 'any', 'reason': 'RequestDropReason' } } + +## +# @x-oob-test: +# +# Test OOB functionality. When send this command with lock=true, +# it'll try to hang the dispatcher. When send it with lock=false, +# it'll try to notify the locked thread to continue. Note: it should +# only be used by QMP test program rather than anything else. +# +# Since: 2.12 +# +# Example: +# +# { "execute": "x-oob-test", +# "arguments": { "lock": true } } +## +{ 'command': 'x-oob-test', 'data' : { 'lock': 'bool' }, + 'allow-oob': true } diff --git a/qmp.c b/qmp.c index e8c303116a..ca2968aad2 100644 --- a/qmp.c +++ b/qmp.c @@ -722,3 +722,19 @@ MemoryInfo *qmp_query_memory_size_summary(Error **errp) return mem_info; } + +static QemuSemaphore x_oob_test_sem; + +static void __attribute__((constructor)) x_oob_test_init(void) +{ + qemu_sem_init(&x_oob_test_sem, 0); +} + +void qmp_x_oob_test(bool lock, Error **errp) +{ + if (lock) { + qemu_sem_wait(&x_oob_test_sem); + } else { + qemu_sem_post(&x_oob_test_sem); + } +} -- 2.14.3