diff options
author | Donald Sharp <sharpd@nvidia.com> | 2023-04-20 14:51:42 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2023-07-05 19:03:14 +0200 |
commit | a014450441aeb1bf3f335d98903eee41e955867e (patch) | |
tree | 614da6a95d0c9fc6be3c7dbd567707856b10accf /zebra/zebra_nhg.c | |
parent | zebra: Remove duplicate function for netlink interface changes (diff) | |
download | frr-a014450441aeb1bf3f335d98903eee41e955867e.tar.xz frr-a014450441aeb1bf3f335d98903eee41e955867e.zip |
zebra: Add code to get/set interface to pass up from dplane
1) Add a bunch of get/set functions and associated data
structure in zebra_dplane to allow the setting and retrieval
of interface netlink data up into the master pthread.
2) Add a bit of code to breakup startup into stages. This is
because FRR currently has a mix of dplane and non dplane interactions
and the code needs to be paused before continuing on.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_nhg.c')
-rw-r--r-- | zebra/zebra_nhg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/zebra_nhg.c b/zebra/zebra_nhg.c index 96e021292..6b7922744 100644 --- a/zebra/zebra_nhg.c +++ b/zebra/zebra_nhg.c @@ -3270,6 +3270,7 @@ void zebra_nhg_dplane_result(struct zebra_dplane_ctx *ctx) case DPLANE_OP_TC_FILTER_ADD: case DPLANE_OP_TC_FILTER_DELETE: case DPLANE_OP_TC_FILTER_UPDATE: + case DPLANE_OP_STARTUP_STAGE: break; } } |