mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] net: fix repeated word 'to' in comment
@ 2026-09-07  6:38 Hemanth Selam
  2026-09-07  8:16 ` Xuanqiang Luo
  2026-09-09 21:00 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 4+ messages in thread
From: Hemanth Selam @ 2026-09-07  6:38 UTC (permalink / raw)
  To: Pablo Neira Ayuso, Harald Welte, Andrew Lunn, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni
  Cc: osmocom-net-gprs, netdev, linux-kernel

Drop the second 'to', reported by checkpatch.pl as a possible repeated
word.  Only touches a comment, no code changes.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
 drivers/net/gtp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/gtp.c b/drivers/net/gtp.c
index 69fe5717846b..4aff23bcfdd1 100644
--- a/drivers/net/gtp.c
+++ b/drivers/net/gtp.c
@@ -770,7 +770,7 @@ static int gtp_parse_exthdrs(struct sk_buff *skb, unsigned int *hdrlen)
 	 *
 	 * This length field includes length field size itself (1 byte),
 	 * payload (variable length) and next type (1 byte). The extension
-	 * header is aligned to to 4 bytes.
+	 * header is aligned to 4 bytes.
 	 */
 
 	do {
-- 
2.48.1


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

* Re: [PATCH] net: fix repeated word 'to' in comment
  2026-09-07  6:38 [PATCH] net: fix repeated word 'to' in comment Hemanth Selam
@ 2026-09-07  8:16 ` Xuanqiang Luo
  2026-09-07  9:31   ` Hemanth Selam
  2026-09-09 21:00 ` patchwork-bot+netdevbpf
  1 sibling, 1 reply; 4+ messages in thread
From: Xuanqiang Luo @ 2026-09-07  8:16 UTC (permalink / raw)
  To: Hemanth Selam
  Cc: osmocom-net-gprs, netdev, linux-kernel, Pablo Neira Ayuso,
	Harald Welte, Andrew Lunn, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni

Hi Hemanth,

在 2026/9/7 14:38, Hemanth Selam 写道:

> Drop the second 'to', reported by checkpatch.pl as a possible repeated
> word.  Only touches a comment, no code changes.
>
> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
> ---
>   drivers/net/gtp.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/gtp.c b/drivers/net/gtp.c
> index 69fe5717846b..4aff23bcfdd1 100644
> --- a/drivers/net/gtp.c
> +++ b/drivers/net/gtp.c
> @@ -770,7 +770,7 @@ static int gtp_parse_exthdrs(struct sk_buff *skb, unsigned int *hdrlen)
>   	 *
>   	 * This length field includes length field size itself (1 byte),
>   	 * payload (variable length) and next type (1 byte). The extension
> -	 * header is aligned to to 4 bytes.
> +	 * header is aligned to 4 bytes.
>   	 */
>   
>   	do {

Typo fixes are cleanups.

Please specify the target tree: use [PATCH net-next] instead of a bare
[PATCH].

Thanks,
Xuanqiang


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

* Re: [PATCH] net: fix repeated word 'to' in comment
  2026-09-07  8:16 ` Xuanqiang Luo
@ 2026-09-07  9:31   ` Hemanth Selam
  0 siblings, 0 replies; 4+ messages in thread
From: Hemanth Selam @ 2026-09-07  9:31 UTC (permalink / raw)
  To: Xuanqiang Luo
  Cc: osmocom-net-gprs, netdev, linux-kernel, Pablo Neira Ayuso,
	Harald Welte, Andrew Lunn, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni

On Mon, Sep 07, 2026 at 04:16:00PM +0800, Xuanqiang Luo wrote:
> Typo fixes are cleanups.
> Please specify the target tree: use [PATCH net-next] instead of a bare
> [PATCH].

You are right, and thank you for the correction.  I missed
maintainer-netdev.rst on this; it asks for the tree in the subject and I
sent these with a bare [PATCH].

The same document also asks not to repost within 24 hours, so rather
than resend immediately I will send v2 tomorrow as

  [PATCH net-next] gtp: fix repeated word 'to' in comment

which also fixes the subject prefix, since "net:" does not name the file
being touched.  I will do the same for the other patches I sent to
netdev today, and use the right tree for the wireless and wpan ones.

Hemanth

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

* Re: [PATCH] net: fix repeated word 'to' in comment
  2026-09-07  6:38 [PATCH] net: fix repeated word 'to' in comment Hemanth Selam
  2026-09-07  8:16 ` Xuanqiang Luo
@ 2026-09-09 21:00 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-09-09 21:00 UTC (permalink / raw)
  To: Hemanth Selam
  Cc: pablo, laforge, andrew+netdev, davem, edumazet, kuba, pabeni,
	osmocom-net-gprs, netdev, linux-kernel

Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Mon,  7 Sep 2026 12:08:04 +0530 you wrote:
> Drop the second 'to', reported by checkpatch.pl as a possible repeated
> word.  Only touches a comment, no code changes.
> 
> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
> ---
>  drivers/net/gtp.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - net: fix repeated word 'to' in comment
    https://git.kernel.org/netdev/net-next/c/1c9c07d0ad69

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2026-09-09 21:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-07  6:38 [PATCH] net: fix repeated word 'to' in comment Hemanth Selam
2026-09-07  8:16 ` Xuanqiang Luo
2026-09-07  9:31   ` Hemanth Selam
2026-09-09 21:00 ` patchwork-bot+netdevbpf

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

all inboxes | Powered by JetHome®