Re: [PATCH -next] tls: rx: Fix unsigned comparison with less than zero

From: Jakub Kicinski
Date: Wed Jul 27 2022 - 22:05:21 EST


On Thu, 28 Jul 2022 09:10:25 +0800 Yang Li wrote:
> struct tls_strparser *strp = (struct tls_strparser *)desc->arg.data;
> - size_t sz, len, chunk;
> + int sz;
> + size_t len, chunk;
> struct sk_buff *skb;
> skb_frag_t *frag;

Thanks for the fix, please keep the sorting of the variable lines from
longest to shortest. "int sz;" should be the last variable declaration
line and "size_t len, chunk;" goes after the skb.