From: Julia Lawall Date: Thu, 23 Oct 2025 01:30:51 +0000 (+0200) Subject: strparser: fix typo in comment X-Git-Tag: v6.19-rc1~170^2~319 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0d2203b9ab71b69c22c8ee1d60c51f9561426a3;p=thirdparty%2Fkernel%2Flinux.git strparser: fix typo in comment The name frags_list doesn't appear in the kernel. It should be frag_list as in the next sentence. Signed-off-by: Julia Lawall Link: https://patch.msgid.link/20251023013051.1728388-1-Julia.Lawall@inria.fr Signed-off-by: Jakub Kicinski --- diff --git a/net/strparser/strparser.c b/net/strparser/strparser.c index 43b1f558b33db..b929c1cd85e0d 100644 --- a/net/strparser/strparser.c +++ b/net/strparser/strparser.c @@ -127,7 +127,7 @@ static int __strp_recv(read_descriptor_t *desc, struct sk_buff *orig_skb, } if (!strp->skb_nextp) { - /* We are going to append to the frags_list of head. + /* We are going to append to the frag_list of head. * Need to unshare the frag_list. */ err = skb_unclone(head, GFP_ATOMIC);