aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/net/ipv4/nexthop.c
diff options
context:
space:
mode:
authorPetr Machata <petrm@nvidia.com>2021-03-11 19:03:25 +0100
committerDavid S. Miller <davem@davemloft.net>2021-03-11 16:13:00 -0800
commit15e1dd570306680269a4738d8e6c721f0924aa03 (patch)
tree05a60800799386b900ca30747f766f3d07af2bf2 /net/ipv4/nexthop.c
parentnexthop: Notify userspace about bucket migrations (diff)
downloadwireguard-linux-15e1dd570306680269a4738d8e6c721f0924aa03.tar.xz
wireguard-linux-15e1dd570306680269a4738d8e6c721f0924aa03.zip
nexthop: Enable resilient next-hop groups
Now that all the code is in place, stop rejecting requests to create resilient next-hop groups. Signed-off-by: Petr Machata <petrm@nvidia.com> Reviewed-by: Ido Schimmel <idosch@nvidia.com> Reviewed-by: David Ahern <dsahern@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/nexthop.c')
-rw-r--r--net/ipv4/nexthop.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/net/ipv4/nexthop.c b/net/ipv4/nexthop.c
index 015a47e8163a..f09fe3a5608f 100644
--- a/net/ipv4/nexthop.c
+++ b/net/ipv4/nexthop.c
@@ -2443,10 +2443,6 @@ static struct nexthop *nexthop_create_group(struct net *net,
} else if (cfg->nh_grp_type == NEXTHOP_GRP_TYPE_RES) {
struct nh_res_table *res_table;
- /* Bounce resilient groups for now. */
- err = -EINVAL;
- goto out_no_nh;
-
res_table = nexthop_res_table_alloc(net, cfg->nh_id, cfg);
if (!res_table) {
err = -ENOMEM;