|
@@ -227,6 +227,23 @@ static inline void skb_dst_force(struct sk_buff *skb)
|
|
|
}
|
|
|
|
|
|
|
|
|
+/**
|
|
|
+ * __skb_tunnel_rx - prepare skb for rx reinsert
|
|
|
+ * @skb: buffer
|
|
|
+ * @dev: tunnel device
|
|
|
+ *
|
|
|
+ * After decapsulation, packet is going to re-enter (netif_rx()) our stack,
|
|
|
+ * so make some cleanups. (no accounting done)
|
|
|
+ */
|
|
|
+static inline void __skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev)
|
|
|
+{
|
|
|
+ skb->dev = dev;
|
|
|
+ skb->rxhash = 0;
|
|
|
+ skb_set_queue_mapping(skb, 0);
|
|
|
+ skb_dst_drop(skb);
|
|
|
+ nf_reset(skb);
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* skb_tunnel_rx - prepare skb for rx reinsert
|
|
|
* @skb: buffer
|
|
@@ -234,17 +251,14 @@ static inline void skb_dst_force(struct sk_buff *skb)
|
|
|
*
|
|
|
* After decapsulation, packet is going to re-enter (netif_rx()) our stack,
|
|
|
* so make some cleanups, and perform accounting.
|
|
|
+ * Note: this accounting is not SMP safe.
|
|
|
*/
|
|
|
static inline void skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev)
|
|
|
{
|
|
|
- skb->dev = dev;
|
|
|
/* TODO : stats should be SMP safe */
|
|
|
dev->stats.rx_packets++;
|
|
|
dev->stats.rx_bytes += skb->len;
|
|
|
- skb->rxhash = 0;
|
|
|
- skb_set_queue_mapping(skb, 0);
|
|
|
- skb_dst_drop(skb);
|
|
|
- nf_reset(skb);
|
|
|
+ __skb_tunnel_rx(skb, dev);
|
|
|
}
|
|
|
|
|
|
/* Children define the path of the packet through the
|