mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
zynq: gem: Increase the Rx buffer descriptors to 32
Increase the Rx Buffer descriptors to 32. This will avoid Rx buffer descriptors overflow if more packets were received at one shot before we process the received ones. This fixes the issue of intermittent timeouts during tftp on a 1Gb connection with tftp server running on windows. Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
96f4f14964
commit
eda9d3071b
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ struct emac_bd {
|
|||
u32 status;
|
||||
};
|
||||
|
||||
#define RX_BUF 3
|
||||
#define RX_BUF 32
|
||||
/* Page table entries are set to 1MB, or multiples of 1MB
|
||||
* (not < 1MB). driver uses less bd's so use 1MB bdspace.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue