|
@@ -3653,10 +3653,6 @@ e1000_update_stats(struct e1000_adapter *adapter)
|
|
|
}
|
|
|
|
|
|
/* Fill out the OS statistics structure */
|
|
|
- adapter->net_stats.rx_packets = adapter->stats.gprc;
|
|
|
- adapter->net_stats.tx_packets = adapter->stats.gptc;
|
|
|
- adapter->net_stats.rx_bytes = adapter->stats.gorcl;
|
|
|
- adapter->net_stats.tx_bytes = adapter->stats.gotcl;
|
|
|
adapter->net_stats.multicast = adapter->stats.mprc;
|
|
|
adapter->net_stats.collisions = adapter->stats.colc;
|
|
|
|
|
@@ -4032,6 +4028,8 @@ e1000_clean_tx_irq(struct e1000_adapter *adapter,
|
|
|
}
|
|
|
adapter->total_tx_bytes += total_tx_bytes;
|
|
|
adapter->total_tx_packets += total_tx_packets;
|
|
|
+ adapter->net_stats.tx_bytes += total_tx_bytes;
|
|
|
+ adapter->net_stats.tx_packets += total_tx_packets;
|
|
|
return cleaned;
|
|
|
}
|
|
|
|
|
@@ -4254,6 +4252,8 @@ next_desc:
|
|
|
|
|
|
adapter->total_rx_packets += total_rx_packets;
|
|
|
adapter->total_rx_bytes += total_rx_bytes;
|
|
|
+ adapter->net_stats.rx_bytes += total_rx_bytes;
|
|
|
+ adapter->net_stats.rx_packets += total_rx_packets;
|
|
|
return cleaned;
|
|
|
}
|
|
|
|
|
@@ -4441,6 +4441,8 @@ next_desc:
|
|
|
|
|
|
adapter->total_rx_packets += total_rx_packets;
|
|
|
adapter->total_rx_bytes += total_rx_bytes;
|
|
|
+ adapter->net_stats.rx_bytes += total_rx_bytes;
|
|
|
+ adapter->net_stats.rx_packets += total_rx_packets;
|
|
|
return cleaned;
|
|
|
}
|
|
|
|