From: Andrea Mayer Date: Sun, 29 Jun 2025 17:12:25 +0000 (+0200) Subject: seg6: fix lenghts typo in a comment X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db3e2ceab3c78c3b8c2f8e2503417064630fbafb;p=thirdparty%2Flinux.git seg6: fix lenghts typo in a comment Fix a typo: lenghts -> length The typo has been identified using codespell, and the tool currently does not report any additional issues in comments. Signed-off-by: Andrea Mayer Reviewed-by: Simon Horman Link: https://patch.msgid.link/20250629171226.4988-2-andrea.mayer@uniroma2.it Signed-off-by: Jakub Kicinski --- diff --git a/net/ipv6/seg6_local.c b/net/ipv6/seg6_local.c index dfa825ee870e6..4834d72624cf8 100644 --- a/net/ipv6/seg6_local.c +++ b/net/ipv6/seg6_local.c @@ -2087,7 +2087,7 @@ struct nla_policy seg6_local_flavors_policy[SEG6_LOCAL_FLV_MAX + 1] = { static int seg6_chk_next_csid_cfg(__u8 block_len, __u8 func_len) { /* Locator-Block and Locator-Node Function cannot exceed 128 bits - * (i.e. C-SID container lenghts). + * (i.e. C-SID container length). */ if (next_csid_chk_cntr_bits(block_len, func_len)) return -EINVAL;