diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-01-14 10:00:01 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2022-01-18 08:39:40 -0500 |
| commit | ee78ed680b1825b809f13cdda48273ee93948156 (patch) | |
| tree | 853e96fca5f7bfd054bef18d599285d170c87c23 /zebra/zebra_rib.c | |
| parent | b3a9fca1505d772e7f10a31ced82567907b3a8e6 (diff) | |
zebra: Convert redistribute_update to use a route_node
FRR is passing around a bunch of data that is encapsulated
within the route node. Let's just pass that around instead.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_rib.c')
| -rw-r--r-- | zebra/zebra_rib.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index ea587b4e20..1fd2a52211 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -1945,8 +1945,7 @@ static void rib_process_result(struct zebra_dplane_ctx *ctx) /* Redistribute if this is the selected re */ if (dest && re == dest->selected_fib) - redistribute_update(dest_pfx, src_pfx, - re, old_re); + redistribute_update(rn, re, old_re); } /* @@ -2252,7 +2251,7 @@ static void rib_process_dplane_notify(struct zebra_dplane_ctx *ctx) dplane_route_notif_update(rn, re, DPLANE_OP_ROUTE_UPDATE, ctx); /* Redistribute, lsp, and nht update */ - redistribute_update(dest_pfx, src_pfx, re, NULL); + redistribute_update(rn, re, NULL); } else if (start_count > 0 && end_count == 0) { if (debug_p) |
