[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 09/10] net: Dump client type 'info network'
From: |
Jan Kiszka |
Subject: |
[Qemu-devel] [PATCH 09/10] net: Dump client type 'info network' |
Date: |
Wed, 20 Jul 2011 12:20:21 +0200 |
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 <address@hidden>
Signed-off-by: Jan Kiszka <address@hidden>
---
net.c | 15 ++++++++++++---
1 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/net.c b/net.c
index 05fc685..12701af 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);
}
}
}
--
1.7.3.4
- [Qemu-devel] [PATCH 00/10] [RESEND] Various net and slirp fixes & enhancements, Jan Kiszka, 2011/07/20
- [Qemu-devel] [PATCH 01/10] slirp: Fix restricted mode, Jan Kiszka, 2011/07/20
- [Qemu-devel] [PATCH 02/10] slirp: Canonicalize restrict syntax, Jan Kiszka, 2011/07/20
- [Qemu-devel] [PATCH 05/10] slirp: Put forked exec into separate process group, Jan Kiszka, 2011/07/20
- [Qemu-devel] [PATCH 04/10] slirp: Replace m_freem with m_free, Jan Kiszka, 2011/07/20
- [Qemu-devel] [PATCH 07/10] net: Improve layout of 'info network', Jan Kiszka, 2011/07/20
- [Qemu-devel] [PATCH 08/10] net: Refactor net_client_types, Jan Kiszka, 2011/07/20
- [Qemu-devel] [PATCH 09/10] net: Dump client type 'info network',
Jan Kiszka <=
- [Qemu-devel] [PATCH 03/10] slirp: Strictly associate DHCP/BOOTP and TFTP with virtual host, Jan Kiszka, 2011/07/20
- [Qemu-devel] [PATCH 06/10] slirp: Forward ICMP echo requests via unprivileged sockets, Jan Kiszka, 2011/07/20
- [Qemu-devel] [PATCH 10/10] net: Consistently use qemu_macaddr_default_if_unset, Jan Kiszka, 2011/07/20
- Re: [Qemu-devel] [PATCH 00/10] [RESEND] Various net and slirp fixes & enhancements, Markus Armbruster, 2011/07/22
- Re: [Qemu-devel] [PATCH 00/10] [RESEND] Various net and slirp fixes & enhancements, Anthony Liguori, 2011/07/23