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

net: ipv6: Fix spelling mistake

change 'Maximium' to 'Maximum'

Signed-off-by: Chenguang Zhao <zhaochenguang@kylinos.cn>
Reviewed-by: Simon Horman <horms@kernel.org>
Acked-by: Paul Moore <paul@paul-moore.com>
Link: https://patch.msgid.link/20250702055820.112190-1-zhaochenguang@kylinos.cn
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Chenguang Zhao and committed by
Jakub Kicinski
8b98f34c 19b323e9

+3 -3
+3 -3
net/ipv6/calipso.c
··· 32 32 #include <linux/unaligned.h> 33 33 #include <linux/crc-ccitt.h> 34 34 35 - /* Maximium size of the calipso option including 35 + /* Maximum size of the calipso option including 36 36 * the two-byte TLV header. 37 37 */ 38 38 #define CALIPSO_OPT_LEN_MAX (2 + 252) ··· 42 42 */ 43 43 #define CALIPSO_HDR_LEN (2 + 8) 44 44 45 - /* Maximium size of the calipso option including 45 + /* Maximum size of the calipso option including 46 46 * the two-byte TLV header and upto 3 bytes of 47 47 * leading pad and 7 bytes of trailing pad. 48 48 */ 49 49 #define CALIPSO_OPT_LEN_MAX_WITH_PAD (3 + CALIPSO_OPT_LEN_MAX + 7) 50 50 51 - /* Maximium size of u32 aligned buffer required to hold calipso 51 + /* Maximum size of u32 aligned buffer required to hold calipso 52 52 * option. Max of 3 initial pad bytes starting from buffer + 3. 53 53 * i.e. the worst case is when the previous tlv finishes on 4n + 3. 54 54 */