From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54134) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wu5op-0000CK-8K for qemu-devel@nongnu.org; Mon, 09 Jun 2014 16:05:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wu5oh-0006xc-DP for qemu-devel@nongnu.org; Mon, 09 Jun 2014 16:05:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:4756) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wu5oh-0006xR-5D for qemu-devel@nongnu.org; Mon, 09 Jun 2014 16:05:15 -0400 Date: Mon, 9 Jun 2014 15:41:09 -0400 From: Luiz Capitulino Message-ID: <20140609154109.4b469fc8@redhat.com> In-Reply-To: <1401230377-14778-1-git-send-email-kroosec@gmail.com> References: <1401230377-14778-1-git-send-email-kroosec@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCHv2 0/8] monitor: Command completion for various commands List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Hani Benhabiles Cc: kwolf@redhat.com, mst@redhat.com, mdroth@linux.vnet.ibm.com, qemu-devel@nongnu.org, kraxel@redhat.com, stefanha@redhat.com, imammedo@redhat.com On Tue, 27 May 2014 23:39:29 +0100 Hani Benhabiles wrote: > A set of patches adding completion support for various hmp commands. Following > other series that were merged earlier. > > Compared to v1: > * patch 04/08: New. > * patch 05/08: Use exported list of host network devices. > > Hani Benhabiles (8): > monitor: Add ringbuf_write and ringbuf_read argument completion. > monitor: Add watchdog_action argument completion. > monitor: Add migrate_set_capability completion. > net: Export valid host network devices list > monitor: Add host_net_add device argument completion. > readline: Make completion strings always unique. > monitor: Add host_net_remove arguments completion. > monitor: Add delvm and loadvm argument completion. > > hmp-commands.hx | 10 ++- > hmp.h | 11 ++++ > include/net/net.h | 1 + > include/sysemu/char.h | 3 +- > monitor.c | 176 ++++++++++++++++++++++++++++++++++++++++++++++++++ > net/net.c | 34 ++++++---- > qemu-char.c | 2 +- > util/readline.c | 6 ++ > 8 files changed, 225 insertions(+), 18 deletions(-) > Applied to the qmp branch, thanks.