]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
xfrm4: strip ECN bits from tos field
authorUlrich Weber <uweber@astaro.com>
Wed, 22 Sep 2010 06:45:11 +0000 (06:45 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 22 Nov 2010 19:00:15 +0000 (11:00 -0800)
[ Upstream commit 94e2238969e89f5112297ad2a00103089dde7e8f ]

otherwise ECT(1) bit will get interpreted as RTO_ONLINK
and routing will fail with XfrmOutBundleGenError.

Signed-off-by: Ulrich Weber <uweber@astaro.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/ipv4/xfrm4_policy.c

index 23883a48ebfb37e0fa5b210d9207e8ba5c12b733..ce1e1b5fdd50869a57bdb63f972e01b07ed88a20 100644 (file)
@@ -61,7 +61,7 @@ static int xfrm4_get_saddr(struct net *net,
 
 static int xfrm4_get_tos(struct flowi *fl)
 {
-       return fl->fl4_tos;
+       return IPTOS_RT_MASK & fl->fl4_tos; /* Strip ECN bits */
 }
 
 static int xfrm4_init_path(struct xfrm_dst *path, struct dst_entry *dst,