Netdev List
 help / color / mirror / Atom feed
* [PATCH] tcp: Spelling s/curcuit/circuit/
@ 2023-06-06 10:04 Geert Uytterhoeven
  2023-06-06 13:52 ` Larysa Zaremba
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2023-06-06 10:04 UTC (permalink / raw)
  To: Eric Dumazet, David S . Miller, David Ahern, Jakub Kicinski,
	Paolo Abeni
  Cc: netdev, Geert Uytterhoeven

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:
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] tcp: Spelling s/curcuit/circuit/
  2023-06-06 10:04 [PATCH] tcp: Spelling s/curcuit/circuit/ Geert Uytterhoeven
@ 2023-06-06 13:52 ` Larysa Zaremba
  2023-06-06 13:56 ` Simon Horman
  2023-06-06 14:05 ` [PATCH RESEND net-next] " Geert Uytterhoeven
  2 siblings, 0 replies; 4+ messages in thread
From: Larysa Zaremba @ 2023-06-06 13:52 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Eric Dumazet, David S . Miller, David Ahern, Jakub Kicinski,
	Paolo Abeni, netdev

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
> 
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] tcp: Spelling s/curcuit/circuit/
  2023-06-06 10:04 [PATCH] tcp: Spelling s/curcuit/circuit/ Geert Uytterhoeven
  2023-06-06 13:52 ` Larysa Zaremba
@ 2023-06-06 13:56 ` Simon Horman
  2023-06-06 14:05 ` [PATCH RESEND net-next] " Geert Uytterhoeven
  2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2023-06-06 13:56 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Eric Dumazet, David S . Miller, David Ahern, Jakub Kicinski,
	Paolo Abeni, netdev

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?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH RESEND net-next] tcp: Spelling s/curcuit/circuit/
  2023-06-06 10:04 [PATCH] tcp: Spelling s/curcuit/circuit/ Geert Uytterhoeven
  2023-06-06 13:52 ` Larysa Zaremba
  2023-06-06 13:56 ` Simon Horman
@ 2023-06-06 14:05 ` Geert Uytterhoeven
  2 siblings, 0 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2023-06-06 14:05 UTC (permalink / raw)
  To: Eric Dumazet, David S . Miller, David Ahern, Jakub Kicinski,
	Paolo Abeni
  Cc: netdev, Geert Uytterhoeven

From: Geert Uytterhoeven <geert+renesas@glider.be>

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:
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-06-06 14:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-06 10:04 [PATCH] tcp: Spelling s/curcuit/circuit/ Geert Uytterhoeven
2023-06-06 13:52 ` Larysa Zaremba
2023-06-06 13:56 ` Simon Horman
2023-06-06 14:05 ` [PATCH RESEND net-next] " Geert Uytterhoeven

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox