From: Zhu Guihua <zhugh.fnst@cn.fujitsu.com>
To: Igor Mammedov <imammedo@redhat.com>
Cc: peter.crosthwaite@xilinx.com, mst@redhat.com,
hutao@cn.fujitsu.com, armbru@redhat.com, qemu-devel@nongnu.org,
isimatu.yasuaki@jp.fujitsu.com, kroosec@gmail.com,
tangchen@cn.fujitsu.com, pbonzini@redhat.com,
lcapitulino@redhat.com, afaerber@suse.de
Subject: Re: [Qemu-devel] [PATCH v3 2/2] monitor: add del completion for peripheral device
Date: Fri, 17 Oct 2014 11:39:39 +0800 [thread overview]
Message-ID: <1413517179.4190.1.camel@G08FNSTD140041> (raw)
In-Reply-To: <20141016135012.77d78b85@igors-macbook-pro.local>
On Thu, 2014-10-16 at 13:50 +0200, Igor Mammedov wrote:
> On Mon, 6 Oct 2014 19:38:44 +0800
> Zhu Guihua <zhugh.fnst@cn.fujitsu.com> wrote:
>
> > Add peripheral_device_del_completion() to let peripheral device del
> > completion be possible.
> >
> > Signed-off-by: Zhu Guihua <zhugh.fnst@cn.fujitsu.com>
> > ---
> > monitor.c | 24 ++++++++++++++++++++++++
> > 1 file changed, 24 insertions(+)
> >
> > diff --git a/monitor.c b/monitor.c
> > index 667efb7..ffe5405 100644
> > --- a/monitor.c
> > +++ b/monitor.c
> > @@ -4351,6 +4351,29 @@ static void
> > device_del_bus_completion(ReadLineState *rs, BusState *bus, }
> > }
> >
> > +static void peripheral_device_del_completion(ReadLineState *rs,
> > + const char *str, size_t
> > len) +{
> > + Object *peripheral;
> > + GSList *list = NULL, *item;
> > +
> > + peripheral = object_resolve_path("/machine/peripheral/", NULL);
> > +
> pls remove unnecessary blank line
>
> > + if (peripheral == NULL) {
> > + return;
> > + }
> > +
> > + object_child_foreach(peripheral,
> > qdev_build_hotpluggable_device_list,
> > + &list);
> > +
> > + for (item = list; item; item = g_slist_next(item)) {
> > + DeviceState *dev = item->data;
> add blank line here, pls.
>
> > + if (!strncmp(str, dev->id, len)) {
> > + readline_add_completion(rs, dev->id);
> > + }
> > + }
> > +}
> > +
> > void chardev_remove_completion(ReadLineState *rs, int nb_args, const
> > char *str) {
> > size_t len;
> > @@ -4424,6 +4447,7 @@ void device_del_completion(ReadLineState *rs,
> > int nb_args, const char *str) len = strlen(str);
> > readline_set_completion_index(rs, len);
> > device_del_bus_completion(rs, sysbus_get_default(), str, len);
> All ID-ed devices that might be available for removal are returned by
> following line, so do we still need above recusive bus walker that
> gathers duplicate devices from buses?
>
yeah, we do not need recursive bus walker any more.
I will change it, thanks.
Regards,
Zhu
> > + peripheral_device_del_completion(rs, str, len);
> > }
> >
> > void object_del_completion(ReadLineState *rs, int nb_args, const
> > char *str)
>
next prev parent reply other threads:[~2014-10-17 3:40 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-06 11:38 [Qemu-devel] [PATCH v3 0/2] monitor: add peripheral device del completion support Zhu Guihua
2014-10-06 11:38 ` [Qemu-devel] [PATCH v3 1/2] qdev: add qdev_build_hotpluggable_device_list helper Zhu Guihua
2014-10-16 11:42 ` Igor Mammedov
2014-10-06 11:38 ` [Qemu-devel] [PATCH v3 2/2] monitor: add del completion for peripheral device Zhu Guihua
2014-10-16 11:50 ` Igor Mammedov
2014-10-17 3:39 ` Zhu Guihua [this message]
2014-10-13 11:39 ` [Qemu-devel] [PATCH v3 0/2] monitor: add peripheral device del completion support Zhu Guihua
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1413517179.4190.1.camel@G08FNSTD140041 \
--to=zhugh.fnst@cn.fujitsu.com \
--cc=afaerber@suse.de \
--cc=armbru@redhat.com \
--cc=hutao@cn.fujitsu.com \
--cc=imammedo@redhat.com \
--cc=isimatu.yasuaki@jp.fujitsu.com \
--cc=kroosec@gmail.com \
--cc=lcapitulino@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.crosthwaite@xilinx.com \
--cc=qemu-devel@nongnu.org \
--cc=tangchen@cn.fujitsu.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).