diff mbox series

tcp: Spelling s/curcuit/circuit/

Message ID 41454fc12506c2620d2dbc03e59a4ba28fd48f22.1686045877.git.geert+renesas@glider.be (mailing list archive)
State Superseded
Delegated to: Netdev Maintainers
Headers show
Series tcp: Spelling s/curcuit/circuit/ | expand

Checks

Context Check Description
netdev/series_format warning Single patches do not need cover letters; Target tree name not specified in the subject
netdev/tree_selection success Guessed tree name to be net-next
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 11 this patch: 11
netdev/cc_maintainers success CCed 6 of 6 maintainers
netdev/build_clang success Errors and warnings before: 8 this patch: 8
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 11 this patch: 11
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 8 lines checked
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

Geert Uytterhoeven June 6, 2023, 10:04 a.m. UTC
Fix a misspelling of "circuit".

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 net/ipv4/tcp_input.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Larysa Zaremba June 6, 2023, 1:52 p.m. UTC | #1
On Tue, Jun 06, 2023 at 12:04:57PM +0200, Geert Uytterhoeven wrote:
> Fix a misspelling of "circuit".
> 

Change is fine, but you haven't specified target tree name. Please do

git format-patch --subject-prefix='PATCH RESEND net-next' -1

and send again.

> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
>  net/ipv4/tcp_input.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
> index bf8b22218dd46863..3403ed457baf781e 100644
> --- a/net/ipv4/tcp_input.c
> +++ b/net/ipv4/tcp_input.c
> @@ -1131,7 +1131,7 @@ static void tcp_count_delivered(struct tcp_sock *tp, u32 delivered,
>   * L|R	1		- orig is lost, retransmit is in flight.
>   * S|R  1		- orig reached receiver, retrans is still in flight.
>   * (L|S|R is logically valid, it could occur when L|R is sacked,
> - *  but it is equivalent to plain S and code short-curcuits it to S.
> + *  but it is equivalent to plain S and code short-circuits it to S.
>   *  L|S is logically invalid, it would mean -1 packet in flight 8))
>   *
>   * These 6 states form finite state machine, controlled by the following events:
> -- 
> 2.34.1
> 
>
Simon Horman June 6, 2023, 1:56 p.m. UTC | #2
On Tue, Jun 06, 2023 at 12:04:57PM +0200, Geert Uytterhoeven wrote:
> Fix a misspelling of "circuit".
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
>  net/ipv4/tcp_input.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
> index bf8b22218dd46863..3403ed457baf781e 100644
> --- a/net/ipv4/tcp_input.c
> +++ b/net/ipv4/tcp_input.c
> @@ -1131,7 +1131,7 @@ static void tcp_count_delivered(struct tcp_sock *tp, u32 delivered,
>   * L|R	1		- orig is lost, retransmit is in flight.
>   * S|R  1		- orig reached receiver, retrans is still in flight.
>   * (L|S|R is logically valid, it could occur when L|R is sacked,
> - *  but it is equivalent to plain S and code short-curcuits it to S.
> + *  but it is equivalent to plain S and code short-circuits it to S.
>   *  L|S is logically invalid, it would mean -1 packet in flight 8))
>   *
>   * These 6 states form finite state machine, controlled by the following events:

Hi Geert,

I have no strong feelings about this.
But I do notice that codespell flags a moderate number
of other spelling mistakes in this file. Perhaps they
could also be fixed at the same time as this one?
diff mbox series

Patch

diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index bf8b22218dd46863..3403ed457baf781e 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -1131,7 +1131,7 @@  static void tcp_count_delivered(struct tcp_sock *tp, u32 delivered,
  * L|R	1		- orig is lost, retransmit is in flight.
  * S|R  1		- orig reached receiver, retrans is still in flight.
  * (L|S|R is logically valid, it could occur when L|R is sacked,
- *  but it is equivalent to plain S and code short-curcuits it to S.
+ *  but it is equivalent to plain S and code short-circuits it to S.
  *  L|S is logically invalid, it would mean -1 packet in flight 8))
  *
  * These 6 states form finite state machine, controlled by the following events: