Commit 1f00aacd authored by David S. Miller's avatar David S. Miller

IPv4: Make pkt_too_big debug msg more informative.

parent e2478d59
......@@ -322,7 +322,8 @@ static inline int ip_queue_xmit2(struct sk_buff *skb)
/* Reject packet ONLY if TCP might fragment
* it itself, if were careful enough.
*/
NETDEBUG(printk(KERN_DEBUG "sending pkt_too_big to self\n"));
NETDEBUG(printk(KERN_DEBUG "sending pkt_too_big (len[%u] pmtu[%u]) to self\n",
skb->len, rt->u.dst.pmtu));
icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
htonl(rt->u.dst.pmtu));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment