diff options
author | Phil Sutter <phil@nwl.cc> | 2010-05-29 15:23:36 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-06-02 15:12:19 +0200 |
commit | b1011b375be106e0a312baafc981a26165283efe (patch) | |
tree | 5ff975809baf98abc42920b255a2b9b30912b9df /drivers/net/korina.c | |
parent | korina: use netdev_alloc_skb_ip_align() here, too (diff) | |
download | linux-b1011b375be106e0a312baafc981a26165283efe.tar.xz linux-b1011b375be106e0a312baafc981a26165283efe.zip |
korina: count RX DMA OVR as rx_fifo_error
This way, RX DMA overruns (actually being caused by overrun of the
512byte input FIFO) show up in ifconfig output. The rx_fifo_errors
counter is unused otherwise.
Signed-off-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/korina.c')
-rw-r--r-- | drivers/net/korina.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/korina.c b/drivers/net/korina.c index 3e9b6b7be42e..c7a9bef4dfb0 100644 --- a/drivers/net/korina.c +++ b/drivers/net/korina.c @@ -376,7 +376,7 @@ static int korina_rx(struct net_device *dev, int limit) if (devcs & ETH_RX_LE) dev->stats.rx_length_errors++; if (devcs & ETH_RX_OVR) - dev->stats.rx_over_errors++; + dev->stats.rx_fifo_errors++; if (devcs & ETH_RX_CV) dev->stats.rx_frame_errors++; if (devcs & ETH_RX_CES) |