From: Jan Kiszka <jan.kiszka@siemens.com>
To: "qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: Markus Armbruster <armbru@redhat.com>
Subject: [Qemu-devel] [PATCH v2 6/9] net: Improve layout of 'info network'
Date: Wed, 08 Jun 2011 10:21:06 +0200 [thread overview]
Message-ID: <4DEF30F2.7090204@siemens.com> (raw)
In-Reply-To: <m3lixc3ics.fsf@blackfin.pond.sub.org>
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>
---
v2: added comment as suggested by Markus
net.c | 14 +++++++++-----
1 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/net.c b/net.c
index 4f777c3..425498d 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);
+ } /* else it's a netdev connected to a NIC, printed with the NIC */
+ if (peer && type == NET_CLIENT_TYPE_NIC) {
+ monitor_printf(mon, " \\ %s: %s\n", peer->name, peer->info_str);
}
- monitor_printf(mon, "\n");
}
}
--
1.7.1
next prev parent reply other threads:[~2011-06-08 8:21 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
2011-06-07 21:38 ` Cole Robinson
2011-06-08 7:14 ` Markus Armbruster
2011-06-08 8:21 ` Jan Kiszka [this message]
2011-06-08 8:55 ` [Qemu-devel] [PATCH v2 " 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=4DEF30F2.7090204@siemens.com \
--to=jan.kiszka@siemens.com \
--cc=armbru@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).