]> Pileus Git - ~andy/linux/commitdiff
iptunnels: remove net arg from iptunnel_xmit()
authorNicolas Dichtel <nicolas.dichtel@6wind.com>
Mon, 2 Sep 2013 13:34:54 +0000 (15:34 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 4 Sep 2013 04:27:25 +0000 (00:27 -0400)
This argument is not used, let's remove it.

Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/vxlan.c
include/net/ip_tunnels.h
net/ipv4/ip_tunnel.c
net/ipv4/ip_tunnel_core.c
net/ipv6/sit.c
net/openvswitch/vport-gre.c

index 8f6d6c1153ce39a51c9a444a2b7e9976733c6e42..e25c97dfbacd008367574c39ebf2cd14f35a7203 100644 (file)
@@ -1528,8 +1528,7 @@ int vxlan_xmit_skb(struct net *net, struct vxlan_sock *vs,
        if (err)
                return err;
 
-       return iptunnel_xmit(net, rt, skb, src, dst,
-                       IPPROTO_UDP, tos, ttl, df);
+       return iptunnel_xmit(rt, skb, src, dst, IPPROTO_UDP, tos, ttl, df);
 }
 EXPORT_SYMBOL_GPL(vxlan_xmit_skb);
 
index 0ce316bb3c65c4f7725c24d8963dd306ba23ced6..94fe8fd07bc9686a2feca2756cd65d6cdb3fab83 100644 (file)
@@ -146,8 +146,7 @@ static inline u8 ip_tunnel_ecn_encap(u8 tos, const struct iphdr *iph,
 }
 
 int iptunnel_pull_header(struct sk_buff *skb, int hdr_len, __be16 inner_proto);
-int iptunnel_xmit(struct net *net, struct rtable *rt,
-                 struct sk_buff *skb,
+int iptunnel_xmit(struct rtable *rt, struct sk_buff *skb,
                  __be32 src, __be32 dst, __u8 proto,
                  __u8 tos, __u8 ttl, __be16 df);
 
index 830de3f4e2935d17e241e37b7c563bd6a6eb191d..0a6cf0e69478d95760aef52e1eb48794b5333639 100644 (file)
@@ -654,8 +654,7 @@ void ip_tunnel_xmit(struct sk_buff *skb, struct net_device *dev,
                }
        }
 
-       err = iptunnel_xmit(tunnel->net, rt, skb,
-                           fl4.saddr, fl4.daddr, protocol,
+       err = iptunnel_xmit(rt, skb, fl4.saddr, fl4.daddr, protocol,
                            ip_tunnel_ecn_encap(tos, inner_iph, skb), ttl, df);
        iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
 
index 850525b34899f3a50d0e19f6bd326821b0c2423a..e82045842351e7aab07b1585127497aec1bc0cee 100644 (file)
@@ -46,8 +46,7 @@
 #include <net/netns/generic.h>
 #include <net/rtnetlink.h>
 
-int iptunnel_xmit(struct net *net, struct rtable *rt,
-                 struct sk_buff *skb,
+int iptunnel_xmit(struct rtable *rt, struct sk_buff *skb,
                  __be32 src, __be32 dst, __u8 proto,
                  __u8 tos, __u8 ttl, __be16 df)
 {
index f18f842ac8931a7702ebe0e250e3d595f5d187bb..1d1458a3b7c47ef8bbb885cf641be7888113b105 100644 (file)
@@ -888,8 +888,8 @@ static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
                ttl = iph6->hop_limit;
        tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
 
-       err = iptunnel_xmit(dev_net(dev), rt, skb, fl4.saddr, fl4.daddr,
-                           IPPROTO_IPV6, tos, ttl, df);
+       err = iptunnel_xmit(rt, skb, fl4.saddr, fl4.daddr, IPPROTO_IPV6, tos,
+                           ttl, df);
        iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
        return NETDEV_TX_OK;
 
index 21d5073e148e11005e9dfe9ca9411e1001ec0ab6..9b3713ef831ec699246172ea5c64bc1f9f72d473 100644 (file)
@@ -176,7 +176,7 @@ static int gre_tnl_send(struct vport *vport, struct sk_buff *skb)
 
        skb->local_df = 1;
 
-       return iptunnel_xmit(net, rt, skb, fl.saddr,
+       return iptunnel_xmit(rt, skb, fl.saddr,
                             OVS_CB(skb)->tun_key->ipv4_dst, IPPROTO_GRE,
                             OVS_CB(skb)->tun_key->ipv4_tos,
                             OVS_CB(skb)->tun_key->ipv4_ttl, df);