patch-2.2.0-pre8 linux/drivers/net/3c59x.c
Next file: linux/drivers/net/Config.in
Previous file: linux/drivers/net/3c523.c
Back to the patch index
Back to the overall index
- Lines: 32
- Date:
Thu Jan 14 22:58:47 1999
- Orig file:
v2.2.0-pre7/linux/drivers/net/3c59x.c
- Orig date:
Wed Jan 13 15:00:42 1999
diff -u --recursive --new-file v2.2.0-pre7/linux/drivers/net/3c59x.c linux/drivers/net/3c59x.c
@@ -1489,6 +1489,7 @@
outb(0x00, ioaddr + TxStatus); /* Pop the status stack. */
}
}
+ vp->stats.tx_bytes += skb->len;
return 0;
}
@@ -1548,6 +1549,7 @@
clear_bit(0, (void*)&dev->tbusy);
}
dev->trans_start = jiffies;
+ vp->stats.tx_bytes += skb->len;
return 0;
}
}
@@ -1732,6 +1734,7 @@
netif_rx(skb);
dev->last_rx = jiffies;
vp->stats.rx_packets++;
+ vp->stats.rx_bytes += skb->len;
/* Wait a limited time to go to next packet. */
for (i = 200; i >= 0; i--)
if ( ! (inw(ioaddr + EL3_STATUS) & CmdInProgress))
@@ -1783,6 +1786,7 @@
int pkt_len = rx_status & 0x1fff;
struct sk_buff *skb;
+ vp->stats.rx_bytes += pkt_len;
if (vortex_debug > 4)
printk(KERN_DEBUG "Receiving packet size %d status %4.4x.\n",
pkt_len, rx_status);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov