|
@@ -63,7 +63,6 @@ void iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb,
|
|
|
int pkt_len = skb->len - skb_inner_network_offset(skb);
|
|
|
struct net *net = dev_net(rt->dst.dev);
|
|
|
struct net_device *dev = skb->dev;
|
|
|
- int skb_iif = skb->skb_iif;
|
|
|
struct iphdr *iph;
|
|
|
int err;
|
|
|
|
|
@@ -73,16 +72,6 @@ void iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb,
|
|
|
skb_dst_set(skb, &rt->dst);
|
|
|
memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
|
|
|
|
|
|
- if (skb_iif && !(df & htons(IP_DF))) {
|
|
|
- /* Arrived from an ingress interface, got encapsulated, with
|
|
|
- * fragmentation of encapulating frames allowed.
|
|
|
- * If skb is gso, the resulting encapsulated network segments
|
|
|
- * may exceed dst mtu.
|
|
|
- * Allow IP Fragmentation of segments.
|
|
|
- */
|
|
|
- IPCB(skb)->flags |= IPSKB_FRAG_SEGS;
|
|
|
- }
|
|
|
-
|
|
|
/* Push down and install the IP header. */
|
|
|
skb_push(skb, sizeof(struct iphdr));
|
|
|
skb_reset_network_header(skb);
|