mirror of https://gitee.com/openkylin/linux.git
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: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
47fd428cd0
commit
f20530bc98
|
@ -801,10 +801,10 @@ static netdev_tx_t enic_hard_start_xmit(struct sk_buff *skb,
|
|||
}
|
||||
|
||||
/* 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 net_device_stats *net_stats = &netdev->stats;
|
||||
struct vnic_stats *stats;
|
||||
|
||||
enic_dev_stats_dump(enic, &stats);
|
||||
|
@ -2117,7 +2117,7 @@ static const struct net_device_ops enic_netdev_dynamic_ops = {
|
|||
.ndo_open = enic_open,
|
||||
.ndo_stop = enic_stop,
|
||||
.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_set_rx_mode = 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 = {
|
|||
.ndo_open = enic_open,
|
||||
.ndo_stop = enic_stop,
|
||||
.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_set_mac_address = enic_set_mac_address,
|
||||
.ndo_set_rx_mode = enic_set_rx_mode,
|
||||
|
|
Loading…
Reference in New Issue