mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
ixp4xx: fix weird ethernet issues with some devices caused by the ethernet packet size increase. despite what the docs day, 14320 is the largest working MRU value, not 16320 fixes #5785 for me
SVN-Revision: 18262
This commit is contained in:
parent
11f5bc1909
commit
426c8da71d
@ -5,7 +5,7 @@
|
||||
#define POOL_ALLOC_SIZE (sizeof(struct desc) * (RX_DESCS + TX_DESCS))
|
||||
#define REGS_SIZE 0x1000
|
||||
-#define MAX_MRU 1536 /* 0x600 */
|
||||
+#define MAX_MRU (16320 - ETH_HLEN - ETH_FCS_LEN)
|
||||
+#define MAX_MRU (14320 - ETH_HLEN - ETH_FCS_LEN)
|
||||
#define RX_BUFF_SIZE ALIGN((NET_IP_ALIGN) + MAX_MRU, 4)
|
||||
|
||||
#define NAPI_WEIGHT 16
|
||||
|
@ -5,7 +5,7 @@
|
||||
#define POOL_ALLOC_SIZE (sizeof(struct desc) * (RX_DESCS + TX_DESCS))
|
||||
#define REGS_SIZE 0x1000
|
||||
-#define MAX_MRU 1536 /* 0x600 */
|
||||
+#define MAX_MRU (16320 - ETH_HLEN - ETH_FCS_LEN)
|
||||
+#define MAX_MRU (14320 - ETH_HLEN - ETH_FCS_LEN)
|
||||
#define RX_BUFF_SIZE ALIGN((NET_IP_ALIGN) + MAX_MRU, 4)
|
||||
|
||||
#define NAPI_WEIGHT 16
|
||||
|
@ -5,7 +5,7 @@
|
||||
#define POOL_ALLOC_SIZE (sizeof(struct desc) * (RX_DESCS + TX_DESCS))
|
||||
#define REGS_SIZE 0x1000
|
||||
-#define MAX_MRU 1536 /* 0x600 */
|
||||
+#define MAX_MRU (16320 - ETH_HLEN - ETH_FCS_LEN)
|
||||
+#define MAX_MRU (14320 - ETH_HLEN - ETH_FCS_LEN)
|
||||
#define RX_BUFF_SIZE ALIGN((NET_IP_ALIGN) + MAX_MRU, 4)
|
||||
|
||||
#define NAPI_WEIGHT 16
|
||||
|
Loading…
Reference in New Issue
Block a user