mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 00:26:39 +08:00
smsc95xx: Use netdev stats structure
Now that netdev has its own stats structure we should use that instead. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
58e2e7d591
commit
80667ac13a
@ -1108,18 +1108,18 @@ static int smsc95xx_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
|
||||
if (unlikely(header & RX_STS_ES_)) {
|
||||
if (netif_msg_rx_err(dev))
|
||||
devdbg(dev, "Error header=0x%08x", header);
|
||||
dev->stats.rx_errors++;
|
||||
dev->stats.rx_dropped++;
|
||||
dev->net->stats.rx_errors++;
|
||||
dev->net->stats.rx_dropped++;
|
||||
|
||||
if (header & RX_STS_CRC_) {
|
||||
dev->stats.rx_crc_errors++;
|
||||
dev->net->stats.rx_crc_errors++;
|
||||
} else {
|
||||
if (header & (RX_STS_TL_ | RX_STS_RF_))
|
||||
dev->stats.rx_frame_errors++;
|
||||
dev->net->stats.rx_frame_errors++;
|
||||
|
||||
if ((header & RX_STS_LE_) &&
|
||||
(!(header & RX_STS_FT_)))
|
||||
dev->stats.rx_length_errors++;
|
||||
dev->net->stats.rx_length_errors++;
|
||||
}
|
||||
} else {
|
||||
/* ETH_FRAME_LEN + 4(CRC) + 2(COE) + 4(Vlan) */
|
||||
|
Loading…
Reference in New Issue
Block a user