]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mlxsw: spectrum_router: Determine offload status using generic function
authorIdo Schimmel <idosch@mellanox.com>
Wed, 8 Feb 2017 10:16:37 +0000 (11:16 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 8 Feb 2017 20:25:18 +0000 (15:25 -0500)
The previous patch introduced a generic function to determine whether a
route should be offloaded or not. Make use of it here.

In the future we're going to add more conditions to this test (e.g.,
whether TOS is non-zero), so it makes sense to centralize it instead of
open coding it in a few places.

Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c

index acabb35cda4af0e1c103871bc5508d9f8ac59668..c452bd3440a019b3febeb673b50eda1d5872f2ef 100644 (file)
@@ -1696,7 +1696,7 @@ static int mlxsw_sp_fib_entry_op4_remote(struct mlxsw_sp *mlxsw_sp,
         * with provided ECMP size. Otherwise, setup trap and pass
         * traffic to kernel.
         */
-       if (fib_entry->nh_group->adj_index_valid) {
+       if (mlxsw_sp_fib_entry_should_offload(fib_entry)) {
                trap_action = MLXSW_REG_RALUE_TRAP_ACTION_NOP;
                adjacency_index = fib_entry->nh_group->adj_index;
                ecmp_size = fib_entry->nh_group->ecmp_size;