[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20101009132749.GA15074@solarflare.com>
Date: Sat, 9 Oct 2010 14:27:50 +0100
From: Ben Hutchings <bhutchings@...arflare.com>
To: Denis Kirjanov <dkirjanov@...nel.org>
Cc: davem@...emloft.net, netdev@...r.kernel.org
Subject: Re: [PATCH -next] sundance: Add initial ethtool stats support
Denis Kirjanov wrote:
> Add initial ethtool statistics support
[...]
> +static void get_ethtool_stats(struct net_device *dev,
> + struct ethtool_stats *stats, u64 *data)
> +{
> + struct net_device_stats *netdev_stats = get_stats(dev);
> + int i = 0;
> +
> + data[i++] = netdev_stats->tx_packets;
> + data[i++] = netdev_stats->tx_bytes;
> + data[i++] = netdev_stats->rx_packets;
> + data[i++] = netdev_stats->rx_bytes;
> + data[i++] = netdev_stats->tx_errors;
> + data[i++] = netdev_stats->tx_dropped;
> + data[i++] = netdev_stats->rx_errors;
> +}
[...]
There is no point in adding ethtool stats that merely mirror the baseline
net device stats.
Ben.
--
Ben Hutchings, Senior Software Engineer, Solarflare Communications
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists