diff options
author | wenxu <wenxu@ucloud.cn> | 2019-02-24 04:36:20 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-02-27 21:50:17 +0100 |
commit | 24ba14406c5c8e33fcbe064f77b3ab01b84ec830 (patch) | |
tree | 88eee234f6c4e037ad2467b8c370ed1541f5e366 /drivers | |
parent | Merge branch 'net-Remove-switchdev_ops' (diff) | |
download | linux-24ba14406c5c8e33fcbe064f77b3ab01b84ec830.tar.xz linux-24ba14406c5c8e33fcbe064f77b3ab01b84ec830.zip |
route: Add multipath_hash in flowi_common to make user-define hash
Current fib_multipath_hash_policy can make hash based on the L3 or
L4. But it only work on the outer IP. So a specific tunnel always
has the same hash value. But a specific tunnel may contain so many
inner connections.
This patch provide a generic multipath_hash in floi_common. It can
make a user-define hash which can mix with L3 or L4 hash.
Signed-off-by: wenxu <wenxu@ucloud.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlxsw/spectrum_span.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlxsw/spectrum_span.c b/drivers/net/ethernet/mellanox/mlxsw/spectrum_span.c index ad5a9b9e1466..536c23c578c3 100644 --- a/drivers/net/ethernet/mellanox/mlxsw/spectrum_span.c +++ b/drivers/net/ethernet/mellanox/mlxsw/spectrum_span.c @@ -305,7 +305,7 @@ mlxsw_sp_span_gretap4_route(const struct net_device *to_dev, parms = mlxsw_sp_ipip_netdev_parms4(to_dev); ip_tunnel_init_flow(&fl4, parms.iph.protocol, *daddrp, *saddrp, - 0, 0, parms.link, tun->fwmark); + 0, 0, parms.link, tun->fwmark, 0); rt = ip_route_output_key(tun->net, &fl4); if (IS_ERR(rt)) |