aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/sit.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv6/sit.c')
-rw-r--r--net/ipv6/sit.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c
index e5fef943e30a..a36a09701bff 100644
--- a/net/ipv6/sit.c
+++ b/net/ipv6/sit.c
@@ -702,8 +702,7 @@ static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
702 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr); 702 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
703 703
704 if (neigh == NULL) { 704 if (neigh == NULL) {
705 if (net_ratelimit()) 705 net_dbg_ratelimited("sit: nexthop == NULL\n");
706 printk(KERN_DEBUG "sit: nexthop == NULL\n");
707 goto tx_error; 706 goto tx_error;
708 } 707 }
709 708
@@ -732,8 +731,7 @@ static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
732 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr); 731 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
733 732
734 if (neigh == NULL) { 733 if (neigh == NULL) {
735 if (net_ratelimit()) 734 net_dbg_ratelimited("sit: nexthop == NULL\n");
736 printk(KERN_DEBUG "sit: nexthop == NULL\n");
737 goto tx_error; 735 goto tx_error;
738 } 736 }
739 737