Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 102657
b: refs/heads/master
c: f8f3154
h: refs/heads/master
i:
  102655: 7910183
v: v3
  • Loading branch information
Stephen Hemminger authored and Jeff Garzik committed May 31, 2008
1 parent 4801995 commit 2ff52f5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 19 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: 41873e9aff0632d80c74380d58a89e8d420151bd
refs/heads/master: f8f31544bf12e0934acb197889215bdc41762912
33 changes: 16 additions & 17 deletions trunk/drivers/net/tlan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,7 @@ static struct net_device_stats *TLan_GetStats( struct net_device *dev )
TLan_PrintList( priv->txList + i, "TX", i );
}

return ( &( (TLanPrivateInfo *) netdev_priv(dev) )->stats );
return &dev->stats;

} /* TLan_GetStats */

Expand Down Expand Up @@ -1434,7 +1434,7 @@ static u32 TLan_HandleTxEOF( struct net_device *dev, u16 host_int )
if ( tmpCStat & TLAN_CSTAT_EOC )
eoc = 1;

priv->stats.tx_bytes += head_list->frameSize;
dev->stats.tx_bytes += head_list->frameSize;

head_list->cStat = TLAN_CSTAT_UNUSED;
netif_start_queue(dev);
Expand Down Expand Up @@ -1564,7 +1564,7 @@ static u32 TLan_HandleRxEOF( struct net_device *dev, u16 host_int )
skb_reserve(skb, 2);
t = (void *) skb_put(skb, frameSize);

priv->stats.rx_bytes += head_list->frameSize;
dev->stats.rx_bytes += head_list->frameSize;

memcpy( t, head_buffer, frameSize );
skb->protocol = eth_type_trans( skb, dev );
Expand All @@ -1586,7 +1586,7 @@ static u32 TLan_HandleRxEOF( struct net_device *dev, u16 host_int )
pci_unmap_single(priv->pciDev, head_list->buffer[0].address, TLAN_MAX_FRAME_SIZE, PCI_DMA_FROMDEVICE);
skb_trim( skb, frameSize );

priv->stats.rx_bytes += frameSize;
dev->stats.rx_bytes += frameSize;

skb->protocol = eth_type_trans( skb, dev );
netif_rx( skb );
Expand Down Expand Up @@ -2142,7 +2142,6 @@ static void TLan_PrintList( TLanList *list, char *type, int num)

static void TLan_ReadAndClearStats( struct net_device *dev, int record )
{
TLanPrivateInfo *priv = netdev_priv(dev);
u32 tx_good, tx_under;
u32 rx_good, rx_over;
u32 def_tx, crc, code;
Expand Down Expand Up @@ -2179,18 +2178,18 @@ static void TLan_ReadAndClearStats( struct net_device *dev, int record )
loss = inb( dev->base_addr + TLAN_DIO_DATA + 2 );

if ( record ) {
priv->stats.rx_packets += rx_good;
priv->stats.rx_errors += rx_over + crc + code;
priv->stats.tx_packets += tx_good;
priv->stats.tx_errors += tx_under + loss;
priv->stats.collisions += multi_col + single_col + excess_col + late_col;

priv->stats.rx_over_errors += rx_over;
priv->stats.rx_crc_errors += crc;
priv->stats.rx_frame_errors += code;

priv->stats.tx_aborted_errors += tx_under;
priv->stats.tx_carrier_errors += loss;
dev->stats.rx_packets += rx_good;
dev->stats.rx_errors += rx_over + crc + code;
dev->stats.tx_packets += tx_good;
dev->stats.tx_errors += tx_under + loss;
dev->stats.collisions += multi_col + single_col + excess_col + late_col;

dev->stats.rx_over_errors += rx_over;
dev->stats.rx_crc_errors += crc;
dev->stats.rx_frame_errors += code;

dev->stats.tx_aborted_errors += tx_under;
dev->stats.tx_carrier_errors += loss;
}

} /* TLan_ReadAndClearStats */
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/net/tlan.h
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ typedef struct tlan_private_tag {
u32 timerSetAt;
u32 timerType;
struct timer_list timer;
struct net_device_stats stats;
struct board *adapter;
u32 adapterRev;
u32 aui;
Expand Down

0 comments on commit 2ff52f5

Please sign in to comment.