]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
amd8111e: use net_device_stats from struct net_device
authorEric Dumazet <eric.dumazet@gmail.com>
Fri, 20 Aug 2010 03:08:23 +0000 (03:08 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 22 Aug 2010 06:09:36 +0000 (23:09 -0700)
struct net_device has its own struct net_device_stats member, so use
this one instead of a private copy in the amd8111e_priv struct.

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/amd8111e.c
drivers/net/amd8111e.h

index 1f5fc64b322412fdbb751c10a5054085eed70794..58a0ab4923ee64013886fc056a1e63c0fa1192f5 100644 (file)
@@ -903,18 +903,18 @@ static int amd8111e_read_mib(void __iomem *mmio, u8 MIB_COUNTER)
 }
 
 /*
-This function reads the mib registers and returns the hardware statistics. It  updates previous internal driver statistics with new values.
-*/
-static struct net_device_stats *amd8111e_get_stats(struct net_device * dev)
+ * This function reads the mib registers and returns the hardware statistics.
+ * It updates previous internal driver statistics with new values.
+ */
+static struct net_device_stats *amd8111e_get_stats(struct net_device *dev)
 {
        struct amd8111e_priv *lp = netdev_priv(dev);
        void __iomem *mmio = lp->mmio;
        unsigned long flags;
-       /* struct net_device_stats *prev_stats = &lp->prev_stats; */
-       struct net_device_stats* new_stats = &lp->stats;
+       struct net_device_stats *new_stats = &dev->stats;
 
-       if(!lp->opened)
-               return &lp->stats;
+       if (!lp->opened)
+               return new_stats;
        spin_lock_irqsave (&lp->lock, flags);
 
        /* stats.rx_packets */
index ac36eb6981e3ba12c06ee7f318699eb9db2e9717..b5926af03a7ef78905b90e62e7082f5e8dba6ba2 100644 (file)
@@ -787,7 +787,6 @@ struct amd8111e_priv{
        struct vlan_group               *vlgrp;
 #endif
        char opened;
-       struct net_device_stats stats;
        unsigned int drv_rx_errors;
        struct amd8111e_coalesce_conf coal_conf;