Linux Security Modules development
 help / color / mirror / Atom feed
* [PATCH] net: ipv6: Fix spelling mistake
@ 2025-07-02  5:58 Chenguang Zhao
  2025-07-02 16:52 ` Simon Horman
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Chenguang Zhao @ 2025-07-02  5:58 UTC (permalink / raw)
  To: Paul Moore, David S. Miller, David Ahern, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Simon Horman
  Cc: Chenguang Zhao, netdev, linux-security-module, linux-kernel

change 'Maximium' to 'Maximum'

Signed-off-by: Chenguang Zhao <zhaochenguang@kylinos.cn>
---
 net/ipv6/calipso.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net/ipv6/calipso.c b/net/ipv6/calipso.c
index 62618a058b8f..39da428f632e 100644
--- a/net/ipv6/calipso.c
+++ b/net/ipv6/calipso.c
@@ -32,7 +32,7 @@
 #include <linux/unaligned.h>
 #include <linux/crc-ccitt.h>
 
-/* Maximium size of the calipso option including
+/* Maximum size of the calipso option including
  * the two-byte TLV header.
  */
 #define CALIPSO_OPT_LEN_MAX (2 + 252)
@@ -42,13 +42,13 @@
  */
 #define CALIPSO_HDR_LEN (2 + 8)
 
-/* Maximium size of the calipso option including
+/* Maximum size of the calipso option including
  * the two-byte TLV header and upto 3 bytes of
  * leading pad and 7 bytes of trailing pad.
  */
 #define CALIPSO_OPT_LEN_MAX_WITH_PAD (3 + CALIPSO_OPT_LEN_MAX + 7)
 
- /* Maximium size of u32 aligned buffer required to hold calipso
+ /* Maximum size of u32 aligned buffer required to hold calipso
   * option.  Max of 3 initial pad bytes starting from buffer + 3.
   * i.e. the worst case is when the previous tlv finishes on 4n + 3.
   */
-- 
2.25.1


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

* Re: [PATCH] net: ipv6: Fix spelling mistake
  2025-07-02  5:58 [PATCH] net: ipv6: Fix spelling mistake Chenguang Zhao
@ 2025-07-02 16:52 ` Simon Horman
  2025-07-02 19:24 ` Paul Moore
  2025-07-02 22:50 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2025-07-02 16:52 UTC (permalink / raw)
  To: Chenguang Zhao
  Cc: Paul Moore, David S. Miller, David Ahern, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, netdev, linux-security-module,
	linux-kernel

On Wed, Jul 02, 2025 at 01:58:20PM +0800, Chenguang Zhao wrote:
> change 'Maximium' to 'Maximum'
> 
> Signed-off-by: Chenguang Zhao <zhaochenguang@kylinos.cn>

Thanks, I see that with this change codespell doesn't flag
any spelling errors in this file.

Reviewed-by: Simon Horman <horms@kernel.org>

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

* Re: [PATCH] net: ipv6: Fix spelling mistake
  2025-07-02  5:58 [PATCH] net: ipv6: Fix spelling mistake Chenguang Zhao
  2025-07-02 16:52 ` Simon Horman
@ 2025-07-02 19:24 ` Paul Moore
  2025-07-02 22:50 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Moore @ 2025-07-02 19:24 UTC (permalink / raw)
  To: Chenguang Zhao
  Cc: David S. Miller, David Ahern, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, netdev, linux-security-module,
	linux-kernel

On Wed, Jul 2, 2025 at 1:59 AM Chenguang Zhao <zhaochenguang@kylinos.cn> wrote:
>
> change 'Maximium' to 'Maximum'
>
> Signed-off-by: Chenguang Zhao <zhaochenguang@kylinos.cn>
> ---
>  net/ipv6/calipso.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Acked-by: Paul Moore <paul@paul-moore.com>

-- 
paul-moore.com

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

* Re: [PATCH] net: ipv6: Fix spelling mistake
  2025-07-02  5:58 [PATCH] net: ipv6: Fix spelling mistake Chenguang Zhao
  2025-07-02 16:52 ` Simon Horman
  2025-07-02 19:24 ` Paul Moore
@ 2025-07-02 22:50 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-07-02 22:50 UTC (permalink / raw)
  To: Chenguang Zhao
  Cc: paul, davem, dsahern, edumazet, kuba, pabeni, horms, netdev,
	linux-security-module, linux-kernel

Hello:

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

On Wed,  2 Jul 2025 13:58:20 +0800 you wrote:
> change 'Maximium' to 'Maximum'
> 
> Signed-off-by: Chenguang Zhao <zhaochenguang@kylinos.cn>
> ---
>  net/ipv6/calipso.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Here is the summary with links:
  - net: ipv6: Fix spelling mistake
    https://git.kernel.org/netdev/net-next/c/8b98f34ce1d8

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:[~2025-07-02 22:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-02  5:58 [PATCH] net: ipv6: Fix spelling mistake Chenguang Zhao
2025-07-02 16:52 ` Simon Horman
2025-07-02 19:24 ` Paul Moore
2025-07-02 22:50 ` 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