Re: [PATCH] net: udp: remove redundant initialization in udp_gro_complete

2020-11-09 Thread Jakub Kicinski
On Fri, 6 Nov 2020 01:42:39 -0500 menglong8.d...@gmail.com wrote: > { > __be16 newlen = htons(skb->len - nhoff); > struct udphdr *uh = (struct udphdr *)(skb->data + nhoff); > - int err = -ENOSYS; > + int err; > struct sock *sk; You can also move the err declaration

[PATCH] net: udp: remove redundant initialization in udp_gro_complete

2020-11-05 Thread menglong8 . dong
From: Menglong Dong The initialization for 'err' with '-ENOSYS' is redundant and can be removed, as it is updated soon and not used. Signed-off-by: Menglong Dong --- net/ipv4/udp_offload.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv4/udp_offload.c