diff options
Diffstat (limited to 'drivers/net/vxlan.c')
| -rw-r--r-- | drivers/net/vxlan.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c index 6d5816be6131..b9fefe27e3e8 100644 --- a/drivers/net/vxlan.c +++ b/drivers/net/vxlan.c @@ -2740,7 +2740,7 @@ static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,  			goto out_unlock;  		} -		tos = ip_tunnel_ecn_encap(RT_TOS(tos), old_iph, skb); +		tos = ip_tunnel_ecn_encap(tos, old_iph, skb);  		ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);  		err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr),  				      vni, md, flags, udp_sum); @@ -2797,7 +2797,7 @@ static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,  			goto out_unlock;  		} -		tos = ip_tunnel_ecn_encap(RT_TOS(tos), old_iph, skb); +		tos = ip_tunnel_ecn_encap(tos, old_iph, skb);  		ttl = ttl ? : ip6_dst_hoplimit(ndst);  		skb_scrub_packet(skb, xnet);  		err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr), | 
