diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2024-10-28 16:20:20 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-28 16:20:20 -0500 |
| commit | 2945258c7ce1f08472ac45117c16ca1591af6d03 (patch) | |
| tree | 0a15c84a931f5b5a84e19fd338df7c4e4f1f39f0 /zebra/rt_netlink.c | |
| parent | ea0b8a0364bdb37679064b680347d7276c03ca06 (diff) | |
| parent | 3bff65abc75e952a15b98666e7271189ac28a2bc (diff) | |
Merge pull request #17254 from donaldsharp/mrib_nht_wonky
Mrib nht wonky
Diffstat (limited to 'zebra/rt_netlink.c')
| -rw-r--r-- | zebra/rt_netlink.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c index dc679ed495..ab07ef8d21 100644 --- a/zebra/rt_netlink.c +++ b/zebra/rt_netlink.c @@ -3178,6 +3178,9 @@ netlink_put_route_update_msg(struct nl_batch *bth, struct zebra_dplane_ctx *ctx) } else return FRR_NETLINK_ERROR; + if (dplane_ctx_get_safi(ctx) == SAFI_MULTICAST) + return FRR_NETLINK_SUCCESS; + if (RSYSTEM_ROUTE(dplane_ctx_get_type(ctx))) return FRR_NETLINK_SUCCESS; |
