From: Stephen Worley Date: Fri, 8 Mar 2019 15:26:33 +0000 (-0500) Subject: zebra: Add calls to the nexthop context process result function X-Git-Tag: base_7.3~219^2~152 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=9865e1c393ff3c3828a6ff85231c1144e86e03b4;p=matthieu%2Ffrr.git zebra: Add calls to the nexthop context process result function Added in case statements to handle finished dataplane contexts and then handle them with the nexthop process result function. Signed-off-by: Stephen Worley --- diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 5f942a7ecf..1ea11640d7 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -3424,6 +3424,12 @@ static int rib_process_dplane_results(struct thread *thread) rib_process_dplane_notify(ctx); break; + case DPLANE_OP_NH_INSTALL: + case DPLANE_OP_NH_UPDATE: + case DPLANE_OP_NH_DELETE: + zebra_nhg_dplane_result(ctx); + break; + case DPLANE_OP_LSP_INSTALL: case DPLANE_OP_LSP_UPDATE: case DPLANE_OP_LSP_DELETE: