summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Campbell2005-07-28 10:07:34 +0200
committerLinus Torvalds2005-07-28 17:39:02 +0200
commite1699f508ab5098de4b258268fa8913db38d9d35 (patch)
tree4435afeae1b6e4e90e787ca1af1701fa9186b2f1
parent[PATCH] Fix incorrect Asus k7m irq router detection (diff)
downloadkernel-qcow2-linux-e1699f508ab5098de4b258268fa8913db38d9d35.tar.gz
kernel-qcow2-linux-e1699f508ab5098de4b258268fa8913db38d9d35.tar.xz
kernel-qcow2-linux-e1699f508ab5098de4b258268fa8913db38d9d35.zip
[PATCH] cs89x0: collect tx_bytes statistics
Signed-off-by: Ian Campbell <icampbell@arcom.com> Cc: Jeff Garzik <jgarzik@pobox.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--drivers/net/cs89x0.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/cs89x0.c b/drivers/net/cs89x0.c
index b96d6fb1929e..2c6dc24c3728 100644
--- a/drivers/net/cs89x0.c
+++ b/drivers/net/cs89x0.c
@@ -1450,6 +1450,7 @@ static int net_send_packet(struct sk_buff *skb, struct net_device *dev)
/* Write the contents of the packet */
outsw(dev->base_addr + TX_FRAME_PORT,skb->data,(skb->len+1) >>1);
spin_unlock_irq(&lp->lock);
+ lp->stats.tx_bytes += skb->len;
dev->trans_start = jiffies;
dev_kfree_skb (skb);