diff --git a/[refs] b/[refs] index 26b57156f42a..b5bd3d5764cb 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: b4efe22cc987f4cd68ff838556580c0cc8c64cbc +refs/heads/master: c76720cf7ba63a3d179b6da8675653c8b01b6c0b diff --git a/trunk/drivers/net/natsemi.c b/trunk/drivers/net/natsemi.c index 6bb48ba80964..b47a12d684f9 100644 --- a/trunk/drivers/net/natsemi.c +++ b/trunk/drivers/net/natsemi.c @@ -2438,13 +2438,16 @@ static void netdev_error(struct net_device *dev, int intr_status) dev->name); } np->stats.rx_fifo_errors++; + np->stats.rx_errors++; } /* Hmmmmm, it's not clear how to recover from PCI faults. */ if (intr_status & IntrPCIErr) { printk(KERN_NOTICE "%s: PCI error %#08x\n", dev->name, intr_status & IntrPCIErr); np->stats.tx_fifo_errors++; + np->stats.tx_errors++; np->stats.rx_fifo_errors++; + np->stats.rx_errors++; } spin_unlock(&np->lock); }