From: Laszlo Ersek <lersek@redhat.com>
To: xen-devel@lists.xensource.com
Subject: [PATCH] add get_drvinfo() support for netloop
Date: Fri, 22 Oct 2010 09:57:31 +0200 [thread overview]
Message-ID: <4CC143EB.8070009@redhat.com> (raw)
The following patch for the 2.6.18 tree adds get_drvinfo() ("ethtool -i")
support to netloop.
Example:
# ethtool -i vif0.3
driver: netloop
version:
firmware-version:
bus-info: vif-0-3
# ethtool -i veth3
driver: netloop
version:
firmware-version:
bus-info: vif-0-3
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
---
drivers/xen/netback/loopback.c | 18 +++++++++++++++---
1 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/drivers/xen/netback/loopback.c b/drivers/xen/netback/loopback.c
index 6c45fae..d110f63 100644
--- a/drivers/xen/netback/loopback.c
+++ b/drivers/xen/netback/loopback.c
@@ -62,6 +62,7 @@ MODULE_PARM_DESC(nloopbacks, "Number of netback-loopback devices to create");
struct net_private {
struct net_device *loopback_dev;
struct net_device_stats stats;
+ int loop_idx;
};
static int loopback_open(struct net_device *dev)
@@ -181,8 +182,17 @@ static struct net_device_stats *loopback_get_stats(struct net_device *dev)
return &np->stats;
}
+static void get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
+{
+ strcpy(info->driver, "netloop");
+ snprintf(info->bus_info, ETHTOOL_BUSINFO_LEN, "vif-0-%d",
+ ((struct net_private *)netdev_priv(dev))->loop_idx);
+}
+
static struct ethtool_ops network_ethtool_ops =
{
+ .get_drvinfo = get_drvinfo,
+
.get_tx_csum = ethtool_op_get_tx_csum,
.set_tx_csum = ethtool_op_set_tx_csum,
.get_sg = ethtool_op_get_sg,
@@ -200,11 +210,13 @@ static void loopback_set_multicast_list(struct net_device *dev)
{
}
-static void loopback_construct(struct net_device *dev, struct net_device *lo)
+static void loopback_construct(struct net_device *dev, struct net_device *lo,
+ int loop_idx)
{
struct net_private *np = netdev_priv(dev);
np->loopback_dev = lo;
+ np->loop_idx = loop_idx;
dev->open = loopback_open;
dev->stop = loopback_close;
@@ -250,8 +262,8 @@ static int __init make_loopback(int i)
if (!dev2)
goto fail_netdev2;
- loopback_construct(dev1, dev2);
- loopback_construct(dev2, dev1);
+ loopback_construct(dev1, dev2, i);
+ loopback_construct(dev2, dev1, i);
/*
* Initialise a dummy MAC address for the 'dummy backend' interface. We
--
1.7.2.3
next reply other threads:[~2010-10-22 7:57 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-22 7:57 Laszlo Ersek [this message]
2010-10-27 9:21 ` [PATCH] add get_drvinfo() support for netloop Laszlo Ersek
2010-10-27 9:33 ` Keir Fraser
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=4CC143EB.8070009@redhat.com \
--to=lersek@redhat.com \
--cc=xen-devel@lists.xensource.com \
/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.