From: Jan Kiszka <jan.kiszka@siemens.com>
To: qemu-devel@nongnu.org
Cc: Markus Armbruster <armbru@redhat.com>
Subject: [Qemu-devel] [PATCH v2 8/9] net: Dump client type 'info network'
Date: Wed, 08 Jun 2011 10:21:18 +0200 [thread overview]
Message-ID: <4DEF30FE.9090803@siemens.com> (raw)
In-Reply-To: <a200866e1ab13d44172bae53da9e321ce445f550.1307465139.git.jan.kiszka@siemens.com>
Include the client type name into the output of 'info network'. The
result looks like this:
(qemu) info network
VLAN 0 devices:
rtl8139.0: type=nic,model=rtl8139,macaddr=52:54:00:12:34:57
Devices not on any VLAN:
virtio-net-pci.0: type=nic,model=virtio-net-pci,macaddr=52:54:00:12:34:56
\ network1: type=tap,fd=5
CC: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
v2: Rebased over changes to 6/9
net.c | 15 ++++++++++++---
1 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/net.c b/net.c
index bd015b1..fc6c093 100644
--- a/net.c
+++ b/net.c
@@ -1227,6 +1227,12 @@ int do_netdev_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
return 0;
}
+static void print_net_client(Monitor *mon, VLANClientState *vc)
+{
+ monitor_printf(mon, "%s: type=%s,%s\n", vc->name,
+ net_client_types[vc->info->type].type, vc->info_str);
+}
+
void do_info_network(Monitor *mon)
{
VLANState *vlan;
@@ -1237,7 +1243,8 @@ void do_info_network(Monitor *mon)
monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
QTAILQ_FOREACH(vc, &vlan->clients, next) {
- monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
+ monitor_printf(mon, " ");
+ print_net_client(mon, vc);
}
}
monitor_printf(mon, "Devices not on any VLAN:\n");
@@ -1245,10 +1252,12 @@ void do_info_network(Monitor *mon)
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);
+ monitor_printf(mon, " ");
+ print_net_client(mon, vc);
} /* 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, " \\ ");
+ print_net_client(mon, peer);
}
}
}
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 ` [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 ` Jan Kiszka [this message]
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=4DEF30FE.9090803@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).