From: "Dr. David Alan Gilbert" <dave@treblig.org>
To: BALATON Zoltan <balaton@eik.bme.hu>
Cc: qemu-devel@nongnu.org, Paolo Bonzini <pbonzini@redhat.com>,
Eduardo Habkost <eduardo@habkost.net>,
berrange@redhat.com
Subject: Re: [PATCH] hmp: Add option to info qtree to omit details
Date: Thu, 7 Mar 2024 15:08:28 +0000 [thread overview]
Message-ID: <ZenYbJW3K6WiiYMI@gallifrey> (raw)
In-Reply-To: <20240301181229.332754E602B@zero.eik.bme.hu>
* BALATON Zoltan (balaton@eik.bme.hu) wrote:
> The output of info qtree monitor command is very long. Add an option
> to print a brief overview omitting all the details.
>
> Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Seems OK to me (I'm not sure I'd have both 'brief' and 'detailed',
but rather stick to one or the other as variable names); still:
Reviewed-by: Dr. David Alan Gilbert <dave@treblig.org>
> ---
> hmp-commands-info.hx | 6 +++---
> system/qdev-monitor.c | 24 +++++++++++++-----------
> 2 files changed, 16 insertions(+), 14 deletions(-)
>
> diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
> index da120f82a3..ad1b1306e3 100644
> --- a/hmp-commands-info.hx
> +++ b/hmp-commands-info.hx
> @@ -540,9 +540,9 @@ ERST
>
> {
> .name = "qtree",
> - .args_type = "",
> - .params = "",
> - .help = "show device tree",
> + .args_type = "brief:-b",
> + .params = "[-b]",
> + .help = "show device tree (-b: brief, omit properties)",
> .cmd = hmp_info_qtree,
> },
>
> diff --git a/system/qdev-monitor.c b/system/qdev-monitor.c
> index a13db763e5..d5cef36800 100644
> --- a/system/qdev-monitor.c
> +++ b/system/qdev-monitor.c
> @@ -744,7 +744,6 @@ DeviceState *qdev_device_add(QemuOpts *opts, Error **errp)
> }
>
> #define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## __VA_ARGS__)
> -static void qbus_print(Monitor *mon, BusState *bus, int indent);
>
> static void qdev_print_props(Monitor *mon, DeviceState *dev, Property *props,
> int indent)
> @@ -784,13 +783,9 @@ static void bus_print_dev(BusState *bus, Monitor *mon, DeviceState *dev, int ind
> static void qdev_print(Monitor *mon, DeviceState *dev, int indent)
> {
> ObjectClass *class;
> - BusState *child;
> NamedGPIOList *ngl;
> NamedClockList *ncl;
>
> - qdev_printf("dev: %s, id \"%s\"\n", object_get_typename(OBJECT(dev)),
> - dev->id ? dev->id : "");
> - indent += 2;
> QLIST_FOREACH(ngl, &dev->gpios, node) {
> if (ngl->num_in) {
> qdev_printf("gpio-in \"%s\" %d\n", ngl->name ? ngl->name : "",
> @@ -814,12 +809,9 @@ static void qdev_print(Monitor *mon, DeviceState *dev, int indent)
> class = object_class_get_parent(class);
> } while (class != object_class_by_name(TYPE_DEVICE));
> bus_print_dev(dev->parent_bus, mon, dev, indent);
> - QLIST_FOREACH(child, &dev->child_bus, sibling) {
> - qbus_print(mon, child, indent);
> - }
> }
>
> -static void qbus_print(Monitor *mon, BusState *bus, int indent)
> +static void qbus_print(Monitor *mon, BusState *bus, int indent, bool details)
> {
> BusChild *kid;
>
> @@ -827,16 +819,26 @@ static void qbus_print(Monitor *mon, BusState *bus, int indent)
> indent += 2;
> qdev_printf("type %s\n", object_get_typename(OBJECT(bus)));
> QTAILQ_FOREACH(kid, &bus->children, sibling) {
> + BusState *child_bus;
> DeviceState *dev = kid->child;
> - qdev_print(mon, dev, indent);
> + qdev_printf("dev: %s, id \"%s\"\n", object_get_typename(OBJECT(dev)),
> + dev->id ? dev->id : "");
> + if (details) {
> + qdev_print(mon, dev, indent + 2);
> + }
> + QLIST_FOREACH(child_bus, &dev->child_bus, sibling) {
> + qbus_print(mon, child_bus, indent + 2, details);
> + }
> }
> }
> #undef qdev_printf
>
> void hmp_info_qtree(Monitor *mon, const QDict *qdict)
> {
> + bool brief = qdict_get_try_bool(qdict, "brief", false);
> +
> if (sysbus_get_default())
> - qbus_print(mon, sysbus_get_default(), 0);
> + qbus_print(mon, sysbus_get_default(), 0, !brief);
> }
>
> void hmp_info_qdm(Monitor *mon, const QDict *qdict)
> --
> 2.30.9
>
--
-----Open up your eyes, open up your mind, open up your code -------
/ Dr. David Alan Gilbert | Running GNU/Linux | Happy \
\ dave @ treblig.org | | In Hex /
\ _________________________|_____ http://www.treblig.org |_______/
prev parent reply other threads:[~2024-03-07 15:09 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-01 18:05 [PATCH] hmp: Add option to info qtree to omit details BALATON Zoltan
2024-03-07 15:08 ` Dr. David Alan Gilbert [this message]
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=ZenYbJW3K6WiiYMI@gallifrey \
--to=dave@treblig.org \
--cc=balaton@eik.bme.hu \
--cc=berrange@redhat.com \
--cc=eduardo@habkost.net \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).