mlxsw: spectrum_router: Add neighbour offload indication
authorIdo Schimmel <idosch@mellanox.com>
Sun, 14 Apr 2019 18:57:49 +0000 (18:57 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 15 Apr 2019 20:29:20 +0000 (13:29 -0700)
In a similar fashion to routes and FDB entries, the neighbour table is
reflected to the device.

Set an offload indication on the neighbour in case it was programmed to
the device.

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

index e159b24..31656a2 100644 (file)
@@ -2444,7 +2444,13 @@ mlxsw_sp_neigh_entry_update(struct mlxsw_sp *mlxsw_sp,
                        return;
        } else {
                WARN_ON_ONCE(1);
+               return;
        }
+
+       if (adding)
+               neigh_entry->key.n->flags |= NTF_OFFLOADED;
+       else
+               neigh_entry->key.n->flags &= ~NTF_OFFLOADED;
 }
 
 void