git: cc52d73deba1 - stable/14 - tcp: fix typos in comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 07 Apr 2025 12:54:32 UTC
The branch stable/14 has been updated by tuexen:
URL: https://cgit.FreeBSD.org/src/commit/?id=cc52d73deba1c9fa8b2c56946d143798abe43c78
commit cc52d73deba1c9fa8b2c56946d143798abe43c78
Author: Peter Lei <peterlei@netflix.com>
AuthorDate: 2025-04-04 16:54:35 +0000
Commit: Michael Tuexen <tuexen@FreeBSD.org>
CommitDate: 2025-04-07 12:53:52 +0000
tcp: fix typos in comment
Reviewed by: tuexen
Sponsored by: Netflix, Inc.
(cherry picked from commit 2a0d26d793b2ff63d36305aa98047a4bc6a6cd8c)
---
sys/netinet/tcp_input.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 104e98436f0c..bd491a116fff 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -1464,7 +1464,7 @@ drop:
* is at least 3/8 of the current socket buffer size.
* 3. receive buffer size has not hit maximal automatic size;
*
- * If all of the criteria are met we increaset the socket buffer
+ * If all of the criteria are met, we increase the socket buffer
* by a 1/2 (bounded by the max). This allows us to keep ahead
* of slow-start but also makes it so our peer never gets limited
* by our rwnd which we then open up causing a burst.