From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41252) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XddzK-00035j-VT for qemu-devel@nongnu.org; Mon, 13 Oct 2014 07:40:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XddzC-0005TU-6t for qemu-devel@nongnu.org; Mon, 13 Oct 2014 07:40:30 -0400 Received: from [59.151.112.132] (port=32514 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XddzB-0005PO-Nq for qemu-devel@nongnu.org; Mon, 13 Oct 2014 07:40:22 -0400 Message-ID: <1413200374.4093.0.camel@G08FNSTD140041> From: Zhu Guihua Date: Mon, 13 Oct 2014 19:39:34 +0800 In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 0/2] monitor: add peripheral device del completion support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.crosthwaite@xilinx.com, mst@redhat.com, hutao@cn.fujitsu.com, armbru@redhat.com, lcapitulino@redhat.com, isimatu.yasuaki@jp.fujitsu.com, kroosec@gmail.com, imammedo@redhat.com, pbonzini@redhat.com, tangchen@cn.fujitsu.com, afaerber@suse.de ping... On Mon, 2014-10-06 at 19:38 +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. > > 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 (2): > qdev: add qdev_build_hotpluggable_device_list helper > monitor: add del completion for peripheral device > > hw/core/qdev.c | 14 ++++++++++++++ > include/hw/qdev-core.h | 2 ++ > monitor.c | 24 ++++++++++++++++++++++++ > 3 files changed, 40 insertions(+) >