From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=35455 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGFtC-0005yH-MQ for qemu-devel@nongnu.org; Wed, 10 Nov 2010 13:59:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGFtB-0003W7-Lt for qemu-devel@nongnu.org; Wed, 10 Nov 2010 13:59:22 -0500 Received: from mx1.redhat.com ([209.132.183.28]:12302) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGFtB-0003Vu-8w for qemu-devel@nongnu.org; Wed, 10 Nov 2010 13:59:21 -0500 From: Luiz Capitulino Date: Wed, 10 Nov 2010 16:59:03 -0200 Message-Id: <1289415546-19105-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH v2 0/3]: QMP: Human Monitor passthrough List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, armbru@redhat.com Simple example: -> { "execute": "hmp_passthrough", "arguments": { "command-line": "print /i 10+25" } } <- { "return": "35\r\n" } Please, check individual patches for details. Also note that this series depends on the script improvements one. changelog --------- v1 -> v2 - A number of small cleanups and clarifications Thanks.