aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/net/dst.h20
-rw-r--r--net/ipv4/ip_gre.c9
-rw-r--r--net/ipv4/ipip.c7
-rw-r--r--net/ipv4/ipmr.c8
-rw-r--r--net/ipv6/ip6_tunnel.c8
-rw-r--r--net/ipv6/ip6mr.c8
-rw-r--r--net/ipv6/sit.c8
7 files changed, 34 insertions, 34 deletions
diff --git a/include/net/dst.h b/include/net/dst.h
index 27207a13f2a..612069beda7 100644
--- a/include/net/dst.h
+++ b/include/net/dst.h
@@ -226,6 +226,26 @@ static inline void skb_dst_force(struct sk_buff *skb)
226 } 226 }
227} 227}
228 228
229
230/**
231 * skb_tunnel_rx - prepare skb for rx reinsert
232 * @skb: buffer
233 * @dev: tunnel device
234 *
235 * After decapsulation, packet is going to re-enter (netif_rx()) our stack,
236 * so make some cleanups, and perform accounting.
237 */
238static inline void skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev)
239{
240 skb->dev = dev;
241 /* TODO : stats should be SMP safe */
242 dev->stats.rx_packets++;
243 dev->stats.rx_bytes += skb->len;
244 skb->rxhash = 0;
245 skb_dst_drop(skb);
246 nf_reset(skb);
247}
248
229/* Children define the path of the packet through the 249/* Children define the path of the packet through the
230 * Linux networking. Thus, destinations are stackable. 250 * Linux networking. Thus, destinations are stackable.
231 */ 251 */
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c
index fe381d12ecd..498cf69c797 100644
--- a/net/ipv4/ip_gre.c
+++ b/net/ipv4/ip_gre.c
@@ -538,7 +538,6 @@ static int ipgre_rcv(struct sk_buff *skb)
538 struct ip_tunnel *tunnel; 538 struct ip_tunnel *tunnel;
539 int offset = 4; 539 int offset = 4;
540 __be16 gre_proto; 540 __be16 gre_proto;
541 unsigned int len;
542 541
543 if (!pskb_may_pull(skb, 16)) 542 if (!pskb_may_pull(skb, 16))
544 goto drop_nolock; 543 goto drop_nolock;
@@ -629,8 +628,6 @@ static int ipgre_rcv(struct sk_buff *skb)
629 tunnel->i_seqno = seqno + 1; 628 tunnel->i_seqno = seqno + 1;
630 } 629 }
631 630
632 len = skb->len;
633
634 /* Warning: All skb pointers will be invalidated! */ 631 /* Warning: All skb pointers will be invalidated! */
635 if (tunnel->dev->type == ARPHRD_ETHER) { 632 if (tunnel->dev->type == ARPHRD_ETHER) {
636 if (!pskb_may_pull(skb, ETH_HLEN)) { 633 if (!pskb_may_pull(skb, ETH_HLEN)) {
@@ -644,11 +641,7 @@ static int ipgre_rcv(struct sk_buff *skb)
644 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN); 641 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
645 } 642 }
646 643
647 stats->rx_packets++; 644 skb_tunnel_rx(skb, tunnel->dev);
648 stats->rx_bytes += len;
649 skb->dev = tunnel->dev;
650 skb_dst_drop(skb);
651 nf_reset(skb);
652 645
653 skb_reset_network_header(skb); 646 skb_reset_network_header(skb);
654 ipgre_ecn_decapsulate(iph, skb); 647 ipgre_ecn_decapsulate(iph, skb);
diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c
index 0b27b14dcc9..7fd63671103 100644
--- a/net/ipv4/ipip.c
+++ b/net/ipv4/ipip.c
@@ -374,11 +374,8 @@ static int ipip_rcv(struct sk_buff *skb)
374 skb->protocol = htons(ETH_P_IP); 374 skb->protocol = htons(ETH_P_IP);
375 skb->pkt_type = PACKET_HOST; 375 skb->pkt_type = PACKET_HOST;
376 376
377 tunnel->dev->stats.rx_packets++; 377 skb_tunnel_rx(skb, tunnel->dev);
378 tunnel->dev->stats.rx_bytes += skb->len; 378
379 skb->dev = tunnel->dev;
380 skb_dst_drop(skb);
381 nf_reset(skb);
382 ipip_ecn_decapsulate(iph, skb); 379 ipip_ecn_decapsulate(iph, skb);
383 netif_rx(skb); 380 netif_rx(skb);
384 rcu_read_unlock(); 381 rcu_read_unlock();
diff --git a/net/ipv4/ipmr.c b/net/ipv4/ipmr.c
index 7a7ee1cc3b5..217ebe035b3 100644
--- a/net/ipv4/ipmr.c
+++ b/net/ipv4/ipmr.c
@@ -1831,14 +1831,12 @@ static int __pim_rcv(struct mr_table *mrt, struct sk_buff *skb,
1831 skb->mac_header = skb->network_header; 1831 skb->mac_header = skb->network_header;
1832 skb_pull(skb, (u8*)encap - skb->data); 1832 skb_pull(skb, (u8*)encap - skb->data);
1833 skb_reset_network_header(skb); 1833 skb_reset_network_header(skb);
1834 skb->dev = reg_dev;
1835 skb->protocol = htons(ETH_P_IP); 1834 skb->protocol = htons(ETH_P_IP);
1836 skb->ip_summed = 0; 1835 skb->ip_summed = 0;
1837 skb->pkt_type = PACKET_HOST; 1836 skb->pkt_type = PACKET_HOST;
1838 skb_dst_drop(skb); 1837
1839 reg_dev->stats.rx_bytes += skb->len; 1838 skb_tunnel_rx(skb, reg_dev);
1840 reg_dev->stats.rx_packets++; 1839
1841 nf_reset(skb);
1842 netif_rx(skb); 1840 netif_rx(skb);
1843 dev_put(reg_dev); 1841 dev_put(reg_dev);
1844 1842
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c
index 2599870747e..8f39893d808 100644
--- a/net/ipv6/ip6_tunnel.c
+++ b/net/ipv6/ip6_tunnel.c
@@ -723,14 +723,10 @@ static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
723 skb->protocol = htons(protocol); 723 skb->protocol = htons(protocol);
724 skb->pkt_type = PACKET_HOST; 724 skb->pkt_type = PACKET_HOST;
725 memset(skb->cb, 0, sizeof(struct inet6_skb_parm)); 725 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
726 skb->dev = t->dev;
727 skb_dst_drop(skb);
728 nf_reset(skb);
729 726
730 dscp_ecn_decapsulate(t, ipv6h, skb); 727 skb_tunnel_rx(skb, t->dev);
731 728
732 t->dev->stats.rx_packets++; 729 dscp_ecn_decapsulate(t, ipv6h, skb);
733 t->dev->stats.rx_bytes += skb->len;
734 netif_rx(skb); 730 netif_rx(skb);
735 rcu_read_unlock(); 731 rcu_read_unlock();
736 return 0; 732 return 0;
diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c
index 163850e22b1..bd9e7d3e9c8 100644
--- a/net/ipv6/ip6mr.c
+++ b/net/ipv6/ip6mr.c
@@ -658,14 +658,12 @@ static int pim6_rcv(struct sk_buff *skb)
658 skb->mac_header = skb->network_header; 658 skb->mac_header = skb->network_header;
659 skb_pull(skb, (u8 *)encap - skb->data); 659 skb_pull(skb, (u8 *)encap - skb->data);
660 skb_reset_network_header(skb); 660 skb_reset_network_header(skb);
661 skb->dev = reg_dev;
662 skb->protocol = htons(ETH_P_IPV6); 661 skb->protocol = htons(ETH_P_IPV6);
663 skb->ip_summed = 0; 662 skb->ip_summed = 0;
664 skb->pkt_type = PACKET_HOST; 663 skb->pkt_type = PACKET_HOST;
665 skb_dst_drop(skb); 664
666 reg_dev->stats.rx_bytes += skb->len; 665 skb_tunnel_rx(skb, reg_dev);
667 reg_dev->stats.rx_packets++; 666
668 nf_reset(skb);
669 netif_rx(skb); 667 netif_rx(skb);
670 dev_put(reg_dev); 668 dev_put(reg_dev);
671 return 0; 669 return 0;
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c
index 5abae10cd88..e51e650ea80 100644
--- a/net/ipv6/sit.c
+++ b/net/ipv6/sit.c
@@ -566,11 +566,9 @@ static int ipip6_rcv(struct sk_buff *skb)
566 kfree_skb(skb); 566 kfree_skb(skb);
567 return 0; 567 return 0;
568 } 568 }
569 tunnel->dev->stats.rx_packets++; 569
570 tunnel->dev->stats.rx_bytes += skb->len; 570 skb_tunnel_rx(skb, tunnel->dev);
571 skb->dev = tunnel->dev; 571
572 skb_dst_drop(skb);
573 nf_reset(skb);
574 ipip6_ecn_decapsulate(iph, skb); 572 ipip6_ecn_decapsulate(iph, skb);
575 netif_rx(skb); 573 netif_rx(skb);
576 rcu_read_unlock(); 574 rcu_read_unlock();