]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mlxsw: spectrum_router: Nullify nexthop's neigh pointer
authorIdo Schimmel <idosch@mellanox.com>
Wed, 8 Feb 2017 10:16:28 +0000 (11:16 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 8 Feb 2017 20:25:15 +0000 (15:25 -0500)
When we invalidate a nexthop we should also invalidate its neighbour
entry pointer as it might be destroyed later on. This makes the nexthop
de-init function symmetric with its init and also ensures nobody will
try to access the neighbour entry.

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 b19f69f4e28e8f331c87cea8106e36c159eac965..31680dea871aaf12c1f30e2672c7c9e09f723bd8 100644 (file)
@@ -1398,12 +1398,13 @@ static void mlxsw_sp_nexthop_fini(struct mlxsw_sp *mlxsw_sp,
 
        __mlxsw_sp_nexthop_neigh_update(nh, true);
        list_del(&nh->neigh_list_node);
+       nh->neigh_entry = NULL;
 
        /* If that is the last nexthop connected to that neigh, remove from
         * nexthop_neighs_list
         */
-       if (list_empty(&nh->neigh_entry->nexthop_list))
-               list_del(&nh->neigh_entry->nexthop_neighs_list_node);
+       if (list_empty(&neigh_entry->nexthop_list))
+               list_del(&neigh_entry->nexthop_neighs_list_node);
 
        if (!neigh_entry->connected && list_empty(&neigh_entry->nexthop_list))
                mlxsw_sp_neigh_entry_destroy(mlxsw_sp, neigh_entry);