aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/route.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/route.c')
-rw-r--r--net/ipv4/route.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index 42d76441501f..76e5880cdb07 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1374,8 +1374,7 @@ void __ip_select_ident(struct iphdr *iph, struct dst_entry *dst, int more)
1374 return; 1374 return;
1375 } 1375 }
1376 } else if (!rt) 1376 } else if (!rt)
1377 printk(KERN_DEBUG "rt_bind_peer(0) @%p\n", 1377 pr_debug("rt_bind_peer(0) @%p\n", __builtin_return_address(0));
1378 __builtin_return_address(0));
1379 1378
1380 ip_select_fb_ident(iph); 1379 ip_select_fb_ident(iph);
1381} 1380}
@@ -1839,9 +1838,9 @@ static void ipv4_link_failure(struct sk_buff *skb)
1839 1838
1840static int ip_rt_bug(struct sk_buff *skb) 1839static int ip_rt_bug(struct sk_buff *skb)
1841{ 1840{
1842 printk(KERN_DEBUG "ip_rt_bug: %pI4 -> %pI4, %s\n", 1841 pr_debug("%s: %pI4 -> %pI4, %s\n",
1843 &ip_hdr(skb)->saddr, &ip_hdr(skb)->daddr, 1842 __func__, &ip_hdr(skb)->saddr, &ip_hdr(skb)->daddr,
1844 skb->dev ? skb->dev->name : "?"); 1843 skb->dev ? skb->dev->name : "?");
1845 kfree_skb(skb); 1844 kfree_skb(skb);
1846 WARN_ON(1); 1845 WARN_ON(1);
1847 return 0; 1846 return 0;