diff options
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/ip6_checksum.c | 4 |
1 files changed, 3 insertions, 1 deletions
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) | |||
79 | /* RFC 2460 section 8.1 says that we SHOULD log | 79 | /* RFC 2460 section 8.1 says that we SHOULD log |
80 | this error. Well, it is reasonable. | 80 | this error. Well, it is reasonable. |
81 | */ | 81 | */ |
82 | LIMIT_NETDEBUG(KERN_INFO "IPv6: udp checksum is 0\n"); | 82 | LIMIT_NETDEBUG(KERN_INFO "IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n", |
83 | &ipv6_hdr(skb)->saddr, ntohs(uh->source), | ||
84 | &ipv6_hdr(skb)->daddr, ntohs(uh->dest)); | ||
83 | return 1; | 85 | return 1; |
84 | } | 86 | } |
85 | if (skb->ip_summed == CHECKSUM_COMPLETE && | 87 | if (skb->ip_summed == CHECKSUM_COMPLETE && |