From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46371) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1djhOA-0001P6-Tq for qemu-devel@nongnu.org; Mon, 21 Aug 2017 03:44:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1djhOA-0005C6-7n for qemu-devel@nongnu.org; Mon, 21 Aug 2017 03:44:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50242) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1djhOA-0005Bm-1o for qemu-devel@nongnu.org; Mon, 21 Aug 2017 03:44:46 -0400 From: Peter Xu Date: Mon, 21 Aug 2017 15:44:22 +0800 Message-Id: <1503301464-27886-5-git-send-email-peterx@redhat.com> In-Reply-To: <1503301464-27886-1-git-send-email-peterx@redhat.com> References: <1503301464-27886-1-git-send-email-peterx@redhat.com> Subject: [Qemu-devel] [RFC 4/6] migration: qmp: migrate_incoming don't need BQL List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , Juan Quintela , mdroth@linux.vnet.ibm.com, peterx@redhat.com, Eric Blake , Laurent Vivier , Markus Armbruster , "Dr . David Alan Gilbert" Let "migrate-incoming" command be run without BQL. Then even if any thread hanged with BQL held, we can still run this command. Signed-off-by: Peter Xu --- qapi-schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qapi-schema.json b/qapi-schema.json index 802ea53..b55e73b 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3259,7 +3259,8 @@ # <- { "return": {} } # ## -{ 'command': 'migrate-incoming', 'data': {'uri': 'str' } } +{ 'command': 'migrate-incoming', 'data': {'uri': 'str' }, + 'without-bql': 'true' } ## # @xen-save-devices-state: -- 2.7.4