diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-02-15 02:15:32 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-02-15 02:15:32 +0000 |
commit | 86464aed71025541805e7b1515541aee89879e33 (patch) | |
tree | e01a457a4912a8553bc65524aa3125d51f29f810 /drivers/net/sdla_fr.c | |
parent | 88f99939ecc6a95a79614574cb7d95ffccfc3466 (diff) |
Merge with Linux 2.2.1.
Diffstat (limited to 'drivers/net/sdla_fr.c')
-rw-r--r-- | drivers/net/sdla_fr.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/sdla_fr.c b/drivers/net/sdla_fr.c index 0a886c6db..ecf784758 100644 --- a/drivers/net/sdla_fr.c +++ b/drivers/net/sdla_fr.c @@ -1078,6 +1078,8 @@ static int if_send(struct sk_buff *skb, struct device *dev) ++chan->if_send_bfrs_passed_to_adptr; ++chan->ifstats.tx_packets; ++card->wandev.stats.tx_packets; + chan->ifstats.tx_bytes += skb->len; + card->wandev.stats.tx_bytes += skb->len; } } } @@ -1501,6 +1503,8 @@ static void fr502_rx_intr(sdla_t * card) netif_rx(skb); ++chan->ifstats.rx_packets; ++card->wandev.stats.rx_packets; + chan->ifstats.rx_bytes += skb->len; + card->wandev.stats.rx_bytes += skb->len; } } sdla_mapmem(&card->hw, FR_MB_VECTOR); @@ -1621,6 +1625,8 @@ static void fr508_rx_intr(sdla_t * card) ++chan->rx_intr_bfr_passed_to_stack; ++chan->ifstats.rx_packets; ++card->wandev.stats.rx_packets; + chan->ifstats.rx_bytes += skb->len; + card->wandev.stats.rx_bytes += skb->len; } } } |