From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51565) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XhINy-0007ty-I1 for qemu-devel@nongnu.org; Thu, 23 Oct 2014 09:25:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XhINt-0003Ec-UV for qemu-devel@nongnu.org; Thu, 23 Oct 2014 09:25:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59690) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XhINt-0003ER-MM for qemu-devel@nongnu.org; Thu, 23 Oct 2014 09:24:57 -0400 Date: Thu, 23 Oct 2014 09:05:06 -0400 From: Luiz Capitulino Message-ID: <20141023090506.3b60d32f@redhat.com> In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v5 0/3] monitor: add peripheral device del completion support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Zhu Guihua Cc: peter.crosthwaite@xilinx.com, mst@redhat.com, hutao@cn.fujitsu.com, qemu-devel@nongnu.org, armbru@redhat.com, isimatu.yasuaki@jp.fujitsu.com, imammedo@redhat.com, pbonzini@redhat.com, tangchen@cn.fujitsu.com, afaerber@suse.de On Tue, 21 Oct 2014 19:46:03 +0800 Zhu Guihua wrote: > After inputting device_del command in monitor, we expect to list all > hotpluggable devices automatically by pressing tab key. This patchset provides > the function to list all peripheral devices such as memory devices. Applied to the qmp branch, thanks. > > v5: > - In patch 2, make list to free (Marcel) > > v4: > - Delete unused device_del_bus_completion (Igor) > - Modify the way to get value of hotpluggable property (Igor) > > v3: > - Commit message changes (Igor) > - Rename function in patch 1 (Igor) > - Use 'hotpluggable' property to discard non-hotpluggable devices (Igor) > > v2: > - Use object_child_foreach() to simplify the implementation (Andreas) > > > Zhu Guihua (3): > qdev: add qdev_build_hotpluggable_device_list helper > monitor: add del completion for peripheral device > monitor: delete device_del_bus_completion > > hw/core/qdev.c | 13 +++++++++++++ > include/hw/qdev-core.h | 2 ++ > monitor.c | 28 +++++++++++++++++----------- > 3 files changed, 32 insertions(+), 11 deletions(-) >