[PATCH v4 13/21] tftp: reduce block size on lookup requests
Enrico Scholz
enrico.scholz at sigma-chemnitz.de
Tue Aug 30 00:38:08 PDT 2022
Save some bytes on network traffic by reducing the server response for
lookup requests.
Signed-off-by: Enrico Scholz <enrico.scholz at sigma-chemnitz.de>
---
fs/tftp.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/fs/tftp.c b/fs/tftp.c
index 7181c58d1083..16e57daaef37 100644
--- a/fs/tftp.c
+++ b/fs/tftp.c
@@ -151,7 +151,9 @@ static int tftp_send(struct file_priv *priv)
'\0', /* "timeout" */
TIMEOUT, '\0',
'\0', /* "blksize" */
- TFTP_MTU_SIZE);
+ /* use only a minimal blksize for getattr
+ operations, */
+ priv->is_getattr ? TFTP_BLOCK_SIZE : TFTP_MTU_SIZE);
pkt++;
if (!priv->push)
--
2.37.2
More information about the barebox
mailing list