mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
ipv4: Convert ip_mkroute_input() to dscp_t.
Pass a dscp_t variable to ip_mkroute_input(), instead of a plain u8, to prevent accidental setting of ECN bits in ->flowi4_tos. Only ip_route_input_slow() actually calls ip_mkroute_input(). Since it already has a dscp_t variable to pass as parameter, we only need to remove the inet_dscp_to_dsfield() conversion. While there, reorganise the function parameters to fill up horizontal space. Signed-off-by: Guillaume Nault <gnault@redhat.com> Reviewed-by: Ido Schimmel <idosch@nvidia.com> Tested-by: Ido Schimmel <idosch@nvidia.com> Reviewed-by: David Ahern <dsahern@kernel.org> Link: https://patch.msgid.link/6aa71e28f9ff681cbd70847080e1ab6b526f94f1.1728302212.git.gnault@redhat.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
2b78d30620
commit
34f28ffd62
@ -2112,11 +2112,9 @@ int fib_multipath_hash(const struct net *net, const struct flowi4 *fl4,
|
||||
}
|
||||
#endif /* CONFIG_IP_ROUTE_MULTIPATH */
|
||||
|
||||
static int ip_mkroute_input(struct sk_buff *skb,
|
||||
struct fib_result *res,
|
||||
struct in_device *in_dev,
|
||||
__be32 daddr, __be32 saddr, u32 tos,
|
||||
struct flow_keys *hkeys)
|
||||
static int ip_mkroute_input(struct sk_buff *skb, struct fib_result *res,
|
||||
struct in_device *in_dev, __be32 daddr,
|
||||
__be32 saddr, dscp_t dscp, struct flow_keys *hkeys)
|
||||
{
|
||||
#ifdef CONFIG_IP_ROUTE_MULTIPATH
|
||||
if (res->fi && fib_info_num_path(res->fi) > 1) {
|
||||
@ -2128,7 +2126,8 @@ static int ip_mkroute_input(struct sk_buff *skb,
|
||||
#endif
|
||||
|
||||
/* create a routing cache entry */
|
||||
return __mkroute_input(skb, res, in_dev, daddr, saddr, tos);
|
||||
return __mkroute_input(skb, res, in_dev, daddr, saddr,
|
||||
inet_dscp_to_dsfield(dscp));
|
||||
}
|
||||
|
||||
/* Implements all the saddr-related checks as ip_route_input_slow(),
|
||||
@ -2315,8 +2314,7 @@ static int ip_route_input_slow(struct sk_buff *skb, __be32 daddr, __be32 saddr,
|
||||
goto martian_destination;
|
||||
|
||||
make_route:
|
||||
err = ip_mkroute_input(skb, res, in_dev, daddr, saddr,
|
||||
inet_dscp_to_dsfield(dscp), flkeys);
|
||||
err = ip_mkroute_input(skb, res, in_dev, daddr, saddr, dscp, flkeys);
|
||||
out: return err;
|
||||
|
||||
brd_input:
|
||||
|
Loading…
Reference in New Issue
Block a user