Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 213898
b: refs/heads/master
c: c3227e5
h: refs/heads/master
v: v3
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Aug 22, 2010
1 parent 6e101a9 commit e8803c2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a2c483a19a96cf5cb9465f42cca34548b9211954
refs/heads/master: c3227e546c574172e77616270a16a04eae561b8f
14 changes: 7 additions & 7 deletions trunk/drivers/net/amd8111e.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/net/amd8111e.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit e8803c2

Please sign in to comment.