Commit f20530bc authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller

enic: update to support 64 bit stats

The device driver already uses 64 bit statistics, it just
doesn't use the 64 bit interface.
Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 47fd428c
...@@ -801,10 +801,10 @@ static netdev_tx_t enic_hard_start_xmit(struct sk_buff *skb, ...@@ -801,10 +801,10 @@ static netdev_tx_t enic_hard_start_xmit(struct sk_buff *skb,
} }
/* dev_base_lock rwlock held, nominally process context */ /* dev_base_lock rwlock held, nominally process context */
static struct net_device_stats *enic_get_stats(struct net_device *netdev) static struct rtnl_link_stats64 *enic_get_stats(struct net_device *netdev,
struct rtnl_link_stats64 *net_stats)
{ {
struct enic *enic = netdev_priv(netdev); struct enic *enic = netdev_priv(netdev);
struct net_device_stats *net_stats = &netdev->stats;
struct vnic_stats *stats; struct vnic_stats *stats;
enic_dev_stats_dump(enic, &stats); enic_dev_stats_dump(enic, &stats);
...@@ -2117,7 +2117,7 @@ static const struct net_device_ops enic_netdev_dynamic_ops = { ...@@ -2117,7 +2117,7 @@ static const struct net_device_ops enic_netdev_dynamic_ops = {
.ndo_open = enic_open, .ndo_open = enic_open,
.ndo_stop = enic_stop, .ndo_stop = enic_stop,
.ndo_start_xmit = enic_hard_start_xmit, .ndo_start_xmit = enic_hard_start_xmit,
.ndo_get_stats = enic_get_stats, .ndo_get_stats64 = enic_get_stats,
.ndo_validate_addr = eth_validate_addr, .ndo_validate_addr = eth_validate_addr,
.ndo_set_rx_mode = enic_set_rx_mode, .ndo_set_rx_mode = enic_set_rx_mode,
.ndo_set_multicast_list = enic_set_rx_mode, .ndo_set_multicast_list = enic_set_rx_mode,
...@@ -2139,7 +2139,7 @@ static const struct net_device_ops enic_netdev_ops = { ...@@ -2139,7 +2139,7 @@ static const struct net_device_ops enic_netdev_ops = {
.ndo_open = enic_open, .ndo_open = enic_open,
.ndo_stop = enic_stop, .ndo_stop = enic_stop,
.ndo_start_xmit = enic_hard_start_xmit, .ndo_start_xmit = enic_hard_start_xmit,
.ndo_get_stats = enic_get_stats, .ndo_get_stats64 = enic_get_stats,
.ndo_validate_addr = eth_validate_addr, .ndo_validate_addr = eth_validate_addr,
.ndo_set_mac_address = enic_set_mac_address, .ndo_set_mac_address = enic_set_mac_address,
.ndo_set_rx_mode = enic_set_rx_mode, .ndo_set_rx_mode = enic_set_rx_mode,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment