mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 14:43:58 +08:00
rocker: Ignore address families other than IPv4
As in previous patch, ignore IPv6 notifications since the driver doesn't support these. 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>
This commit is contained in:
parent
64e5e8252d
commit
d371ac1e1b
@ -2192,6 +2192,10 @@ static int rocker_router_fib_event(struct notifier_block *nb,
|
||||
{
|
||||
struct rocker *rocker = container_of(nb, struct rocker, fib_nb);
|
||||
struct rocker_fib_event_work *fib_work;
|
||||
struct fib_notifier_info *info = ptr;
|
||||
|
||||
if (info->family != AF_INET)
|
||||
return NOTIFY_DONE;
|
||||
|
||||
fib_work = kzalloc(sizeof(*fib_work), GFP_ATOMIC);
|
||||
if (WARN_ON(!fib_work))
|
||||
|
Loading…
Reference in New Issue
Block a user