From: Bjørn Mork Date: Tue, 25 Feb 2014 20:11:02 +0000 (+0100) Subject: ipv6: log src and dst along with "udp checksum is 0" X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=84a3e72c3a5c2441be46c4afba95fe5af3c370e7;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git ipv6: log src and dst along with "udp checksum is 0" These info messages are rather pointless without any means to identify the source of the bogus packets. Logging the src and dst addresses and ports may help a bit. Cc: Joe Perches Signed-off-by: Bjørn Mork Signed-off-by: David S. Miller --- diff --git a/net/ipv6/ip6_checksum.c b/net/ipv6/ip6_checksum.c index 72d198b8e4d2..ee7a97f510cb 100644 --- a/net/ipv6/ip6_checksum.c +++ b/net/ipv6/ip6_checksum.c @@ -79,7 +79,9 @@ int udp6_csum_init(struct sk_buff *skb, struct udphdr *uh, int proto) /* RFC 2460 section 8.1 says that we SHOULD log this error. Well, it is reasonable. */ - LIMIT_NETDEBUG(KERN_INFO "IPv6: udp checksum is 0\n"); + LIMIT_NETDEBUG(KERN_INFO "IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n", + &ipv6_hdr(skb)->saddr, ntohs(uh->source), + &ipv6_hdr(skb)->daddr, ntohs(uh->dest)); return 1; } if (skb->ip_summed == CHECKSUM_COMPLETE &&