diff options
| author | Stephen Worley <sworley@nvidia.com> | 2022-08-16 11:21:04 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-16 11:21:04 -0400 |
| commit | d30d63f4f719168e179e34e1efa66ba86b33b493 (patch) | |
| tree | bf19088b80fd2ad85f31be0814480e8e6c794c8e /zebra/zebra_rib.c | |
| parent | fdbff7d1a8526605ee0782349463ff5592ad873d (diff) | |
| parent | c8e718ce1f2ebf2769ae02883c85149ae61973c9 (diff) | |
Merge pull request #11694 from sigeryang/master
zebra: add basic traffic control API
Diffstat (limited to 'zebra/zebra_rib.c')
| -rw-r--r-- | zebra/zebra_rib.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 79eb99ddf9..03bda8cc33 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -4391,6 +4391,11 @@ static void rib_process_dplane_results(struct thread *thread) zebra_if_dplane_result(ctx); break; + case DPLANE_OP_TC_INSTALL: + case DPLANE_OP_TC_UPDATE: + case DPLANE_OP_TC_DELETE: + break; + /* Some op codes not handled here */ case DPLANE_OP_ADDR_INSTALL: case DPLANE_OP_ADDR_UNINSTALL: |
