Commit 7f753cbea4c7cb56f278982c987570e6575d3dd7

Authored by Marcel Ziswiler
Committed by Marek Vasut
1 parent cea6c8ce23

colibri_t30: fix usb ethernet functionality

Since commit aa7a648747d8c704a9a81c9e493d386930724e9d
("net: Stop including NFS overhead in defragment max") the following
has been reproducibly observed while trying to transfer data over TFTP:

Load address: 0x80408000
Loading: EHCI timed out on TD - token=0x8008d80
T EHCI timed out on TD - token=0x88008d80
Rx: failed to receive: -5

This patch fixes this by upping our maximal de-fragmentation aka IP
packet size again.

Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

include/configs/colibri_t30.h
... ... @@ -48,6 +48,7 @@
48 48  
49 49 /* General networking support */
50 50 #define CONFIG_IP_DEFRAG
  51 +#define CONFIG_NET_MAXDEFRAG (16384 + 4096 + 24)
51 52 #define CONFIG_TFTP_BLOCKSIZE 16384
52 53 #define CONFIG_TFTP_TSIZE
53 54