Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <andrea.mayer@uniroma2.it>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20250629171226.4988-2-andrea.mayer@uniroma2.it
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Andrea Mayer and committed by
Jakub Kicinski
db3e2cea a63b5a0b

+1 -1
+1 -1
net/ipv6/seg6_local.c
··· 2087 2087 static int seg6_chk_next_csid_cfg(__u8 block_len, __u8 func_len) 2088 2088 { 2089 2089 /* Locator-Block and Locator-Node Function cannot exceed 128 bits 2090 - * (i.e. C-SID container lenghts). 2090 + * (i.e. C-SID container length). 2091 2091 */ 2092 2092 if (next_csid_chk_cntr_bits(block_len, func_len)) 2093 2093 return -EINVAL;