diff options
| author | Stephen Worley <sworley@cumulusnetworks.com> | 2019-03-08 10:26:33 -0500 |
|---|---|---|
| committer | Stephen Worley <sworley@cumulusnetworks.com> | 2019-10-25 11:13:37 -0400 |
| commit | 9865e1c393ff3c3828a6ff85231c1144e86e03b4 (patch) | |
| tree | 7719c477d9e7b4a05f22e0e6bfcd54163308d943 /zebra/zebra_rib.c | |
| parent | 044e54d1eb4cbd009bd2ab267ab03d78c22c2bba (diff) | |
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 <sworley@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_rib.c')
| -rw-r--r-- | zebra/zebra_rib.c | 6 |
1 files changed, 6 insertions, 0 deletions
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: |
