Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 65e65ec1 authored by Ido Schimmel's avatar Ido Schimmel Committed by David S. Miller
Browse files

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: default avatarIdo Schimmel <idosch@mellanox.com>
Signed-off-by: default avatarJiri Pirko <jiri@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f36f5ac6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3912,7 +3912,7 @@ static int mlxsw_sp_router_fib_event(struct notifier_block *nb,
	struct fib_notifier_info *info = ptr;
	struct mlxsw_sp_router *router;

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

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