All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: Jan Kiszka <jan.kiszka@siemens.com>
Cc: "libvir-list@redhat.com" <libvir-list@redhat.com>,
	qemu-devel@nongnu.org, Markus Armbruster <armbru@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 6/9] net: Improve layout of 'info network'
Date: Tue, 07 Jun 2011 14:55:58 -0500	[thread overview]
Message-ID: <4DEE824E.7080209@codemonkey.ws> (raw)
In-Reply-To: <893bbf06226ec15c6e1bcc99e3e3263dfaf89332.1307465139.git.jan.kiszka@siemens.com>

On 06/07/2011 11:45 AM, Jan Kiszka wrote:
> Improve the layout when listing non-vlan clients via 'info network'. The
> result looks like this:
>
> (qemu) info network
> Devices not on any VLAN:
>    orphan: net=10.0.2.0, restricted=n
>    virtio-net-pci.0: model=virtio-net-pci,macaddr=52:54:00:12:34:56
>     \ network2: fd=5
>    e1000.0: model=e1000,macaddr=52:54:00:12:34:57
>     \ network1: net=10.0.2.0, restricted=n
>    rtl8139.0: model=rtl8139,macaddr=52:54:00:12:34:58
>
> ie. peers are grouped, orphans are listed as before.
>
> CC: Markus Armbruster<armbru@redhat.com>
> Signed-off-by: Jan Kiszka<jan.kiszka@siemens.com>

There isn't a query-network yet in QMP so libvirt is probably still 
using the HMP version.

Can someone on the libvirt side Ack/Nack about whether this patch will 
break libvirt?

Regards,

Anthony Liguori

> ---
>   net.c |   14 +++++++++-----
>   1 files changed, 9 insertions(+), 5 deletions(-)
>
> diff --git a/net.c b/net.c
> index 4f777c3..606ce70 100644
> --- a/net.c
> +++ b/net.c
> @@ -1224,7 +1224,8 @@ int do_netdev_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
>   void do_info_network(Monitor *mon)
>   {
>       VLANState *vlan;
> -    VLANClientState *vc;
> +    VLANClientState *vc, *peer;
> +    net_client_type type;
>
>       QTAILQ_FOREACH(vlan,&vlans, next) {
>           monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
> @@ -1235,11 +1236,14 @@ void do_info_network(Monitor *mon)
>       }
>       monitor_printf(mon, "Devices not on any VLAN:\n");
>       QTAILQ_FOREACH(vc,&non_vlan_clients, next) {
> -        monitor_printf(mon, "  %s: %s", vc->name, vc->info_str);
> -        if (vc->peer) {
> -            monitor_printf(mon, " peer=%s", vc->peer->name);
> +        peer = vc->peer;
> +        type = vc->info->type;
> +        if (!peer || type == NET_CLIENT_TYPE_NIC) {
> +            monitor_printf(mon, "  %s: %s\n", vc->name, vc->info_str);
> +        }
> +        if (peer&&  type == NET_CLIENT_TYPE_NIC) {
> +            monitor_printf(mon, "   \\ %s: %s\n", peer->name, peer->info_str);
>           }
> -        monitor_printf(mon, "\n");
>       }
>   }
>

  reply	other threads:[~2011-06-07 19:56 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-07 16:45 [Qemu-devel] [PATCH 0/9] Various net and slirp fixes & enhancements Jan Kiszka
2011-06-07 16:45 ` [Qemu-devel] [PATCH 1/9] slirp: Fix restricted mode Jan Kiszka
2011-06-07 16:45 ` [Qemu-devel] [PATCH 2/9] slirp: Canonicalize restrict syntax Jan Kiszka
2011-06-07 16:45 ` [Qemu-devel] [PATCH 3/9] slirp: Strictly associate DHCP/BOOTP and TFTP with virtual host Jan Kiszka
2011-06-07 16:45 ` [Qemu-devel] [PATCH 4/9] slirp: Replace m_freem with m_free Jan Kiszka
2011-06-07 16:45 ` [Qemu-devel] [PATCH 5/9] slirp: Put forked exec into separate process group Jan Kiszka
2011-06-07 16:45 ` [Qemu-devel] [PATCH 6/9] net: Improve layout of 'info network' Jan Kiszka
2011-06-07 19:55   ` Anthony Liguori [this message]
2011-06-07 21:38     ` Cole Robinson
2011-06-08  7:14   ` Markus Armbruster
2011-06-08  8:21     ` [Qemu-devel] [PATCH v2 " Jan Kiszka
2011-06-08  8:55       ` Markus Armbruster
2011-06-07 16:45 ` [Qemu-devel] [PATCH 7/9] net: Refactor net_client_types Jan Kiszka
2011-06-07 16:45 ` [Qemu-devel] [PATCH 8/9] net: Dump client type 'info network' Jan Kiszka
2011-06-08  8:21   ` [Qemu-devel] [PATCH v2 " Jan Kiszka
2011-06-07 16:45 ` [Qemu-devel] [PATCH 9/9] net: Consistently use qemu_macaddr_default_if_unset Jan Kiszka
2011-06-08  7:22 ` [Qemu-devel] [PATCH 0/9] Various net and slirp fixes & enhancements Markus Armbruster

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=4DEE824E.7080209@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=armbru@redhat.com \
    --cc=jan.kiszka@siemens.com \
    --cc=libvir-list@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.