From 9865e1c393ff3c3828a6ff85231c1144e86e03b4 Mon Sep 17 00:00:00 2001 From: Stephen Worley Date: Fri, 8 Mar 2019 10:26:33 -0500 Subject: [PATCH] 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 --- zebra/zebra_rib.c | 6 ++++++ 1 file changed, 6 insertions(+) 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: -- 2.39.5