Skip to content
Snippets Groups Projects
Commit 89ba81d1 authored by Alessandro Rubini's avatar Alessandro Rubini Committed by Ben Warren
Browse files

tftp: get the tftp block size from config file and from the environment


Increasing the block size is useful if CONFIG_IP_DEFRAG is
used. Howerver, the last fragments in a burst may overflow the
receiving ethernet, so the default is left at 1468, with thre new
CONFIG_TFTP_BLOCKSIZE for config files. Further, "tftpblocksize"
can be set in the environment.

Signed-off-by: default avatarAlessandro Rubini <rubini@gnudd.com>
Signed-off-by: default avatarBen Warren <biggerbadderben@gmail.com>
parent 5cfaa4e5
No related branches found
No related tags found
No related merge requests found
...@@ -84,8 +84,14 @@ extern flash_info_t flash_info[]; ...@@ -84,8 +84,14 @@ extern flash_info_t flash_info[];
/* 512 is poor choice for ethernet, MTU is typically 1500. /* 512 is poor choice for ethernet, MTU is typically 1500.
* Minus eth.hdrs thats 1468. Can get 2x better throughput with * Minus eth.hdrs thats 1468. Can get 2x better throughput with
* almost-MTU block sizes. At least try... fall back to 512 if need be. * almost-MTU block sizes. At least try... fall back to 512 if need be.
* (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
*/ */
#ifdef CONFIG_TFTP_BLOCKSIZE
#define TFTP_MTU_BLOCKSIZE CONFIG_TFTP_BLOCKSIZE
#else
#define TFTP_MTU_BLOCKSIZE 1468 #define TFTP_MTU_BLOCKSIZE 1468
#endif
static unsigned short TftpBlkSize=TFTP_BLOCK_SIZE; static unsigned short TftpBlkSize=TFTP_BLOCK_SIZE;
static unsigned short TftpBlkSizeOption=TFTP_MTU_BLOCKSIZE; static unsigned short TftpBlkSizeOption=TFTP_MTU_BLOCKSIZE;
...@@ -466,9 +472,12 @@ TftpTimeout (void) ...@@ -466,9 +472,12 @@ TftpTimeout (void)
void void
TftpStart (void) TftpStart (void)
{ {
#ifdef CONFIG_TFTP_PORT
char *ep; /* Environment pointer */ char *ep; /* Environment pointer */
#endif
/* Allow the user to choose tftpblocksize */
if ((ep = getenv("tftpblocksize")) != NULL)
TftpBlkSizeOption = simple_strtol(ep, NULL, 10);
debug("tftp block size is %i\n", TftpBlkSizeOption);
TftpServerIP = NetServerIP; TftpServerIP = NetServerIP;
if (BootFile[0] == '\0') { if (BootFile[0] == '\0') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment