diff options
author | Ido Schimmel <idosch@nvidia.com> | 2024-09-03 16:53:27 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-09-05 02:57:11 +0300 |
commit | c9a1e2629d10669e86b772add4fdea84252442da (patch) | |
tree | af9707bb578c2933251c5d22224b7fada06189ee /net/ipv6/sit.c | |
parent | de1fb3e8b053bf29ab366ae56b43659e87985928 (diff) | |
download | linux-c9a1e2629d10669e86b772add4fdea84252442da.tar.xz |
ipv6: sit: Unmask upper DSCP bits in ipip6_tunnel_bind_dev()
Unmask the upper DSCP bits when calling ip_route_output_ports() so that
in the future it could perform the FIB lookup according to the full DSCP
value.
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
Reviewed-by: Guillaume Nault <gnault@redhat.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Link: https://patch.msgid.link/20240903135327.2810535-5-idosch@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/ipv6/sit.c')
-rw-r--r-- | net/ipv6/sit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c index 16b90a24c9ba..39bd8951bfca 100644 --- a/net/ipv6/sit.c +++ b/net/ipv6/sit.c @@ -1112,7 +1112,7 @@ static void ipip6_tunnel_bind_dev(struct net_device *dev) iph->daddr, iph->saddr, 0, 0, IPPROTO_IPV6, - RT_TOS(iph->tos), + iph->tos & INET_DSCP_MASK, tunnel->parms.link); if (!IS_ERR(rt)) { |