Message ID | 20210831020210.726942-1-eric.dumazet@gmail.com |
---|---|
State | New |
Headers | show |
Series | [net] ipv4: fix endianness issue in inet_rtm_getroute_build_skb() | expand |
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Mon, 30 Aug 2021 19:02:10 -0700 you wrote: > From: Eric Dumazet <edumazet@google.com> > > The UDP length field should be in network order. > This removes the following sparse error: > > net/ipv4/route.c:3173:27: warning: incorrect type in assignment (different base types) > net/ipv4/route.c:3173:27: expected restricted __be16 [usertype] len > net/ipv4/route.c:3173:27: got unsigned long > > [...] Here is the summary with links: - [net] ipv4: fix endianness issue in inet_rtm_getroute_build_skb() https://git.kernel.org/netdev/net-next/c/92548b0ee220 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 225714b5efc0b9c6bcd2d58a62d4656cdc5a1cde..94e33d3eaf621d99baeab338e4e847471d835215 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c @@ -3184,7 +3184,7 @@ static struct sk_buff *inet_rtm_getroute_build_skb(__be32 src, __be32 dst, udph = skb_put_zero(skb, sizeof(struct udphdr)); udph->source = sport; udph->dest = dport; - udph->len = sizeof(struct udphdr); + udph->len = htons(sizeof(struct udphdr)); udph->check = 0; break; }