summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/intel/e1000e/netdev.c
diff options
context:
space:
mode:
authorstephen hemminger <stephen@networkplumber.org>2017-01-07 04:12:53 +0100
committerDavid S. Miller <davem@davemloft.net>2017-01-08 23:51:44 +0100
commit5944701df90d9577658e2354cc27c4ceaeca30fe (patch)
tree5bb624e7bfe7876f7cd052946be1e5f8493a1ab4 /drivers/net/ethernet/intel/e1000e/netdev.c
parentnet: make ndo_get_stats64 a void function (diff)
downloadlinux-5944701df90d9577658e2354cc27c4ceaeca30fe.tar.xz
linux-5944701df90d9577658e2354cc27c4ceaeca30fe.zip
net: remove useless memset's in drivers get_stats64
In dev_get_stats() the statistic structure storage has already been zeroed. Therefore network drivers do not need to call memset() again. Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/net/ethernet/intel/e1000e/netdev.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c
index 723025b317cc..79651eb608ff 100644
--- a/drivers/net/ethernet/intel/e1000e/netdev.c
+++ b/drivers/net/ethernet/intel/e1000e/netdev.c
@@ -5925,7 +5925,6 @@ void e1000e_get_stats64(struct net_device *netdev,
{
struct e1000_adapter *adapter = netdev_priv(netdev);
- memset(stats, 0, sizeof(struct rtnl_link_stats64));
spin_lock(&adapter->stats64_lock);
e1000e_update_stats(adapter);
/* Fill out the OS statistics structure */