aboutsummaryrefslogtreecommitdiffstats
path: root/net/openvswitch
diff options
context:
space:
mode:
authorNicolas Dichtel <nicolas.dichtel@6wind.com>2013-09-02 09:34:55 -0400
committerDavid S. Miller <davem@davemloft.net>2013-09-04 00:27:25 -0400
commit117961878cc1386923cfddcdd9016b777827c8dd (patch)
tree7ba6cf5d0384a7fc626dbb99850f8ad6f4cb1cd6 /net/openvswitch
parent8b7ed2d91d6afb0b55ba75f94b66e51f70783a46 (diff)
vxlan: remove net arg from vxlan[6]_xmit_skb()
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>
Diffstat (limited to 'net/openvswitch')
-rw-r--r--net/openvswitch/vport-vxlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/vport-vxlan.c b/net/openvswitch/vport-vxlan.c
index a0060245b4e1..a481c03e2861 100644
--- a/net/openvswitch/vport-vxlan.c
+++ b/net/openvswitch/vport-vxlan.c
@@ -176,7 +176,7 @@ static int vxlan_tnl_send(struct vport *vport, struct sk_buff *skb)
176 inet_get_local_port_range(&port_min, &port_max); 176 inet_get_local_port_range(&port_min, &port_max);
177 src_port = vxlan_src_port(port_min, port_max, skb); 177 src_port = vxlan_src_port(port_min, port_max, skb);
178 178
179 err = vxlan_xmit_skb(net, vxlan_port->vs, rt, skb, 179 err = vxlan_xmit_skb(vxlan_port->vs, rt, skb,
180 fl.saddr, OVS_CB(skb)->tun_key->ipv4_dst, 180 fl.saddr, OVS_CB(skb)->tun_key->ipv4_dst,
181 OVS_CB(skb)->tun_key->ipv4_tos, 181 OVS_CB(skb)->tun_key->ipv4_tos,
182 OVS_CB(skb)->tun_key->ipv4_ttl, df, 182 OVS_CB(skb)->tun_key->ipv4_ttl, df,