From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49834) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dkPW9-0002IH-E7 for qemu-devel@nongnu.org; Wed, 23 Aug 2017 02:51:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dkPW8-0007Yd-Nt for qemu-devel@nongnu.org; Wed, 23 Aug 2017 02:51:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33446) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dkPW8-0007Y6-HA for qemu-devel@nongnu.org; Wed, 23 Aug 2017 02:51:56 -0400 From: Peter Xu Date: Wed, 23 Aug 2017 14:51:09 +0800 Message-Id: <1503471071-2233-7-git-send-email-peterx@redhat.com> In-Reply-To: <1503471071-2233-1-git-send-email-peterx@redhat.com> References: <1503471071-2233-1-git-send-email-peterx@redhat.com> Subject: [Qemu-devel] [RFC v2 6/8] 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 , "Daniel P . Berrange" , Fam Zheng , 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