[PATCH v3 4/5] ratp: Increase the establish timeout to 1sec
Jules Maselbas
jmaselbas at kalray.eu
Tue Feb 7 08:20:54 PST 2023
Current timeout was only 100ms which is also the current initial value
for the RTO (Retransmission Time Out), this is too short as it doesn't
give barebox a chance to resent a packet during the handshake.
Signed-off-by: Jules Maselbas <jmaselbas at kalray.eu>
---
common/ratp/ratp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/ratp/ratp.c b/common/ratp/ratp.c
index 424c9406d2..fddb286e01 100644
--- a/common/ratp/ratp.c
+++ b/common/ratp/ratp.c
@@ -486,7 +486,7 @@ int barebox_ratp(struct console_device *cdev)
ctx->cdev = cdev;
ctx->have_synch = 1;
- ret = ratp_establish(&ctx->ratp, false, 100);
+ ret = ratp_establish(&ctx->ratp, false, 1000);
if (ret < 0)
goto out;
--
2.17.1
More information about the barebox
mailing list