mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
atheros: ignore reports about oversized ethernet frames, as can be caused by the header mode of marvell 88e6060 switches (see https://dev.openwrt.org/ticket/3507#comment:16)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15185 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
obj-$(CONFIG_DECLANCE) += declance.o
|
||||
--- /dev/null
|
||||
+++ b/drivers/net/ar231x.c
|
||||
@@ -0,0 +1,1265 @@
|
||||
@@ -0,0 +1,1264 @@
|
||||
+/*
|
||||
+ * ar231x.c: Linux driver for the Atheros AR231x Ethernet device.
|
||||
+ *
|
||||
@@ -833,8 +833,7 @@
|
||||
+ break;
|
||||
+ }
|
||||
+
|
||||
+ if ((status & (DMA_RX_ERROR | DMA_RX_ERR_LENGTH)) &&
|
||||
+ (!(status & DMA_RX_LONG))) {
|
||||
+ if (status & DMA_RX_ERROR) {
|
||||
+ dev->stats.rx_errors++;
|
||||
+ dev->stats.rx_dropped++;
|
||||
+
|
||||
|
||||
Reference in New Issue
Block a user