mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-05-23 15:43:48 +00:00
rocker: Fail attempts to use routes with nexthop objects
Fail attempts to use nexthop objects with routes until support can be properly added. Signed-off-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6a87afc072
commit
dbcc4fa718
1 changed files with 4 additions and 0 deletions
|
@ -2214,6 +2214,10 @@ static int rocker_router_fib_event(struct notifier_block *nb,
|
||||||
NL_SET_ERR_MSG_MOD(info->extack, "IPv6 gateway with IPv4 route is not supported");
|
NL_SET_ERR_MSG_MOD(info->extack, "IPv6 gateway with IPv4 route is not supported");
|
||||||
return notifier_from_errno(-EINVAL);
|
return notifier_from_errno(-EINVAL);
|
||||||
}
|
}
|
||||||
|
if (fen_info->fi->nh) {
|
||||||
|
NL_SET_ERR_MSG_MOD(info->extack, "IPv4 route with nexthop objects is not supported");
|
||||||
|
return notifier_from_errno(-EINVAL);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
memcpy(&fib_work->fen_info, ptr, sizeof(fib_work->fen_info));
|
memcpy(&fib_work->fen_info, ptr, sizeof(fib_work->fen_info));
|
||||||
|
|
Loading…
Add table
Reference in a new issue