summaryrefslogtreecommitdiff
path: root/net/ipv4
diff options
context:
space:
mode:
authorDavid S. Miller <davem@nuts.ninka.net>2002-05-13 00:38:40 -0700
committerDavid S. Miller <davem@nuts.ninka.net>2002-05-13 00:38:40 -0700
commit1f00aacda55273ab7bf521ef778433f47e584cc6 (patch)
tree51a4faa5e6740f405df24449c4300fadbb65a780 /net/ipv4
parente2478d59ee15019197b562432a688e3ef2bf12d9 (diff)
IPv4: Make pkt_too_big debug msg more informative.
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/ip_output.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index 3d4c5c7ea391..085b61562cba 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -322,7 +322,8 @@ fragment:
/* 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));