Commit 304b1875 authored by Yueh-Shun Li's avatar Yueh-Shun Li Committed by Jakub Kicinski

tcp: fix comment typo

Spell "transmissions" properly.

Found by searching for keyword "tranm".
Signed-off-by: default avatarYueh-Shun Li <shamrocklee@posteo.net>
Link: https://lore.kernel.org/r/20230622012627.15050-6-shamrocklee@posteo.netSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent b028813a
...@@ -2867,7 +2867,7 @@ static void tcp_process_loss(struct sock *sk, int flag, int num_dupack, ...@@ -2867,7 +2867,7 @@ static void tcp_process_loss(struct sock *sk, int flag, int num_dupack,
} }
if (tcp_is_reno(tp)) { if (tcp_is_reno(tp)) {
/* A Reno DUPACK means new data in F-RTO step 2.b above are /* A Reno DUPACK means new data in F-RTO step 2.b above are
* delivered. Lower inflight to clock out (re)tranmissions. * delivered. Lower inflight to clock out (re)transmissions.
*/ */
if (after(tp->snd_nxt, tp->high_seq) && num_dupack) if (after(tp->snd_nxt, tp->high_seq) && num_dupack)
tcp_add_reno_sack(sk, num_dupack, flag & FLAG_ECE); tcp_add_reno_sack(sk, num_dupack, flag & FLAG_ECE);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment