All of lore.kernel.org
 help / color / mirror / Atom feed
* [MPTCP] [PATCH][next] mptcp: fix spelling mistake "colesced" -> "coalesced"
@ 2020-09-15  8:44 ` Colin King
  0 siblings, 0 replies; 6+ messages in thread
From: Colin King @ 2020-09-15  8:44 UTC (permalink / raw)
  To: mptcp

[-- Attachment #1: Type: text/plain, Size: 900 bytes --]

From: Colin Ian King <colin.king(a)canonical.com>

There is a spelling mistake a pr_debug message. Fix it.

Signed-off-by: Colin Ian King <colin.king(a)canonical.com>
---
 net/mptcp/protocol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c
index ef0dd2f23482..8f53323c6335 100644
--- a/net/mptcp/protocol.c
+++ b/net/mptcp/protocol.c
@@ -128,7 +128,7 @@ static bool mptcp_try_coalesce(struct sock *sk, struct sk_buff *to,
 	    !skb_try_coalesce(to, from, &fragstolen, &delta))
 		return false;
 
-	pr_debug("colesced seq %llx into %llx new len %d new end seq %llx",
+	pr_debug("coalesced seq %llx into %llx new len %d new end seq %llx",
 		 MPTCP_SKB_CB(from)->map_seq, MPTCP_SKB_CB(to)->map_seq,
 		 to->len, MPTCP_SKB_CB(from)->end_seq);
 	MPTCP_SKB_CB(to)->end_seq = MPTCP_SKB_CB(from)->end_seq;
-- 
2.27.0

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

* [PATCH][next] mptcp: fix spelling mistake "colesced" -> "coalesced"
@ 2020-09-15  8:44 ` Colin King
  0 siblings, 0 replies; 6+ messages in thread
From: Colin King @ 2020-09-15  8:44 UTC (permalink / raw)
  To: Mat Martineau, Matthieu Baerts, David S . Miller, Jakub Kicinski, mptcp
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake a pr_debug message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 net/mptcp/protocol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c
index ef0dd2f23482..8f53323c6335 100644
--- a/net/mptcp/protocol.c
+++ b/net/mptcp/protocol.c
@@ -128,7 +128,7 @@ static bool mptcp_try_coalesce(struct sock *sk, struct sk_buff *to,
 	    !skb_try_coalesce(to, from, &fragstolen, &delta))
 		return false;
 
-	pr_debug("colesced seq %llx into %llx new len %d new end seq %llx",
+	pr_debug("coalesced seq %llx into %llx new len %d new end seq %llx",
 		 MPTCP_SKB_CB(from)->map_seq, MPTCP_SKB_CB(to)->map_seq,
 		 to->len, MPTCP_SKB_CB(from)->end_seq);
 	MPTCP_SKB_CB(to)->end_seq = MPTCP_SKB_CB(from)->end_seq;
-- 
2.27.0


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

* [PATCH][next] mptcp: fix spelling mistake "colesced" -> "coalesced"
@ 2020-09-15  8:44 ` Colin King
  0 siblings, 0 replies; 6+ messages in thread
From: Colin King @ 2020-09-15  8:44 UTC (permalink / raw)
  To: Mat Martineau, Matthieu Baerts, David S . Miller, Jakub Kicinski, mptcp
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake a pr_debug message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 net/mptcp/protocol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c
index ef0dd2f23482..8f53323c6335 100644
--- a/net/mptcp/protocol.c
+++ b/net/mptcp/protocol.c
@@ -128,7 +128,7 @@ static bool mptcp_try_coalesce(struct sock *sk, struct sk_buff *to,
 	    !skb_try_coalesce(to, from, &fragstolen, &delta))
 		return false;
 
-	pr_debug("colesced seq %llx into %llx new len %d new end seq %llx",
+	pr_debug("coalesced seq %llx into %llx new len %d new end seq %llx",
 		 MPTCP_SKB_CB(from)->map_seq, MPTCP_SKB_CB(to)->map_seq,
 		 to->len, MPTCP_SKB_CB(from)->end_seq);
 	MPTCP_SKB_CB(to)->end_seq = MPTCP_SKB_CB(from)->end_seq;
-- 
2.27.0

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

* [MPTCP] Re: [PATCH][next] mptcp: fix spelling mistake "colesced" -> "coalesced"
  2020-09-15  8:44 ` Colin King
  (?)
@ 2020-09-15  9:12 ` Matthieu Baerts
  -1 siblings, 0 replies; 6+ messages in thread
From: Matthieu Baerts @ 2020-09-15  9:12 UTC (permalink / raw)
  To: mptcp

[-- Attachment #1: Type: text/plain, Size: 539 bytes --]

Hi Colin,

On 15/09/2020 10:44, Colin King wrote:
> From: Colin Ian King <colin.king(a)canonical.com>
> 
> There is a spelling mistake a pr_debug message. Fix it.

Thank you for the patch!

Reviewed-by: Matthieu Baerts <matthieu.baerts(a)tessares.net>

Now I don't know if it can be accepted if it was not sent to netdev ML. 
You might have to re-submit it. If you do, please replace "next" by 
"net-next" in the subject to avoid confusion.

Cheers,
Matt
-- 
Tessares | Belgium | Hybrid Access Solutions
www.tessares.net

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

* Re: [PATCH][next] mptcp: fix spelling mistake "colesced" -> "coalesced"
@ 2020-09-15  9:12 ` Matthieu Baerts
  0 siblings, 0 replies; 6+ messages in thread
From: Matthieu Baerts @ 2020-09-15  9:12 UTC (permalink / raw)
  To: Colin King, Mat Martineau, David S . Miller, Jakub Kicinski, mptcp
  Cc: kernel-janitors, linux-kernel

Hi Colin,

On 15/09/2020 10:44, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake a pr_debug message. Fix it.

Thank you for the patch!

Reviewed-by: Matthieu Baerts <matthieu.baerts@tessares.net>

Now I don't know if it can be accepted if it was not sent to netdev ML. 
You might have to re-submit it. If you do, please replace "next" by 
"net-next" in the subject to avoid confusion.

Cheers,
Matt
-- 
Tessares | Belgium | Hybrid Access Solutions
www.tessares.net

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

* Re: [PATCH][next] mptcp: fix spelling mistake "colesced" -> "coalesced"
@ 2020-09-15  9:12 ` Matthieu Baerts
  0 siblings, 0 replies; 6+ messages in thread
From: Matthieu Baerts @ 2020-09-15  9:12 UTC (permalink / raw)
  To: Colin King, Mat Martineau, David S . Miller, Jakub Kicinski, mptcp
  Cc: kernel-janitors, linux-kernel

Hi Colin,

On 15/09/2020 10:44, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake a pr_debug message. Fix it.

Thank you for the patch!

Reviewed-by: Matthieu Baerts <matthieu.baerts@tessares.net>

Now I don't know if it can be accepted if it was not sent to netdev ML. 
You might have to re-submit it. If you do, please replace "next" by 
"net-next" in the subject to avoid confusion.

Cheers,
Matt
-- 
Tessares | Belgium | Hybrid Access Solutions
www.tessares.net

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

end of thread, other threads:[~2020-09-15  9:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-15  8:44 [MPTCP] [PATCH][next] mptcp: fix spelling mistake "colesced" -> "coalesced" Colin King
2020-09-15  8:44 ` Colin King
2020-09-15  8:44 ` Colin King
2020-09-15  9:12 [MPTCP] " Matthieu Baerts
2020-09-15  9:12 ` Matthieu Baerts
2020-09-15  9:12 ` Matthieu Baerts

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.