Skip to content

Commit 65e65ec

Browse files
idoschdavem330
authored andcommitted
mlxsw: spectrum_router: Don't ignore IPv6 notifications
We now have all the necessary IPv6 infrastructure in place, so stop ignoring these notifications. Signed-off-by: Ido Schimmel <[email protected]> Signed-off-by: Jiri Pirko <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent f36f5ac commit 65e65ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3912,7 +3912,7 @@ static int mlxsw_sp_router_fib_event(struct notifier_block *nb,
39123912
struct fib_notifier_info *info = ptr;
39133913
struct mlxsw_sp_router *router;
39143914

3915-
if (!net_eq(info->net, &init_net) || info->family != AF_INET)
3915+
if (!net_eq(info->net, &init_net))
39163916
return NOTIFY_DONE;
39173917

39183918
fib_work = kzalloc(sizeof(*fib_work), GFP_ATOMIC);

0 commit comments

Comments
 (0)