diff options
| author | Stephen Worley <sworley@cumulusnetworks.com> | 2020-06-10 12:35:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-10 12:35:36 -0400 |
| commit | 5e0494b38a53e5a3501088efb4b48b2cbb7a080f (patch) | |
| tree | f5e18ed8e373fbbcd8e58f47fdbe1d428c59b6f9 /zebra/zebra_rib.c | |
| parent | b71ca5ae42878fffa387cad0ab9af4782e3bcd44 (diff) | |
| parent | 99e387d5836307525e6afddc7ea3b93355a92af5 (diff) | |
Merge pull request #6465 from xThaid/iprules
zebra: move ip rule installation to use dplane thread
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 0fc716db17..75619520dc 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -3583,6 +3583,12 @@ static int rib_process_dplane_results(struct thread *thread) zebra_vxlan_handle_result(ctx); break; + case DPLANE_OP_RULE_ADD: + case DPLANE_OP_RULE_DELETE: + case DPLANE_OP_RULE_UPDATE: + zebra_pbr_dplane_result(ctx); + break; + /* Some op codes not handled here */ case DPLANE_OP_ADDR_INSTALL: case DPLANE_OP_ADDR_UNINSTALL: |
