32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
From: ksrinivasan@novell.com
|
|
Subject: netfront: ethtool -i does not return info about xennet driver
|
|
Patch-mainline: n/a
|
|
References: bnc#591179
|
|
|
|
Signed-off-by: K. Y. Srinivasan <ksrinivasan@novell.com>
|
|
|
|
--- linux.orig/drivers/xen/netfront/netfront.c 2010-02-08 06:59:48.000000000 -0700
|
|
+++ linux/drivers/xen/netfront/netfront.c 2010-03-26 17:18:30.000000000 -0600
|
|
@@ -1766,6 +1766,13 @@ static void xennet_set_features(struct n
|
|
xennet_set_tso(dev, 1);
|
|
}
|
|
|
|
+static void netfront_get_drvinfo(struct net_device *dev,
|
|
+ struct ethtool_drvinfo *info)
|
|
+{
|
|
+ strcpy(info->driver, "netfront");
|
|
+ strcpy(info->bus_info, dev_name(dev->dev.parent));
|
|
+}
|
|
+
|
|
static int network_connect(struct net_device *dev)
|
|
{
|
|
struct netfront_info *np = netdev_priv(dev);
|
|
@@ -1874,6 +1881,7 @@ static void netif_uninit(struct net_devi
|
|
|
|
static const struct ethtool_ops network_ethtool_ops =
|
|
{
|
|
+ .get_drvinfo = netfront_get_drvinfo,
|
|
.get_tx_csum = ethtool_op_get_tx_csum,
|
|
.set_tx_csum = ethtool_op_set_tx_csum,
|
|
.get_sg = ethtool_op_get_sg,
|