diff options
author | Bhaskar Chowdhury <unixbhaskar@gmail.com> | 2021-03-27 02:12:39 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-29 03:31:13 +0300 |
commit | e5ca43e82d91212e24686fafca118f25cf985bfb (patch) | |
tree | 73ea8288e0de6ffce62040d0b0d879665dd4f124 | |
parent | a66e04ce0e01ec8be981a583ae200ac1f0dbd736 (diff) | |
download | linux-e5ca43e82d91212e24686fafca118f25cf985bfb.tar.xz |
ipv4: tcp_lp.c: Couple of typo fixes
s/resrved/reserved/
s/within/within/
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv4/tcp_lp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_lp.c b/net/ipv4/tcp_lp.c index e6459537d4d2..82b36ec3f2f8 100644 --- a/net/ipv4/tcp_lp.c +++ b/net/ipv4/tcp_lp.c @@ -63,7 +63,7 @@ enum tcp_lp_state { * @sowd: smoothed OWD << 3 * @owd_min: min OWD * @owd_max: max OWD - * @owd_max_rsv: resrved max owd + * @owd_max_rsv: reserved max owd * @remote_hz: estimated remote HZ * @remote_ref_time: remote reference time * @local_ref_time: local reference time @@ -305,7 +305,7 @@ static void tcp_lp_pkts_acked(struct sock *sk, const struct ack_sample *sample) /* FIXME: try to reset owd_min and owd_max here * so decrease the chance the min/max is no longer suitable - * and will usually within threshold when whithin inference */ + * and will usually within threshold when within inference */ lp->owd_min = lp->sowd >> 3; lp->owd_max = lp->sowd >> 2; lp->owd_max_rsv = lp->sowd >> 2; |