diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-04-20 08:51:42 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-07-05 13:03:14 -0400 |
| commit | a014450441aeb1bf3f335d98903eee41e955867e (patch) | |
| tree | 614da6a95d0c9fc6be3c7dbd567707856b10accf /zebra/kernel_socket.c | |
| parent | 487a96a35f5428c205fe792f9bdded2c894bb5a0 (diff) | |
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/kernel_socket.c')
| -rw-r--r-- | zebra/kernel_socket.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/kernel_socket.c b/zebra/kernel_socket.c index b8dc92b2e9..ccbe9b27cf 100644 --- a/zebra/kernel_socket.c +++ b/zebra/kernel_socket.c @@ -1617,6 +1617,7 @@ void kernel_update_multi(struct dplane_ctx_list_head *ctx_list) case DPLANE_OP_GRE_SET: case DPLANE_OP_INTF_ADDR_ADD: case DPLANE_OP_INTF_ADDR_DEL: + case DPLANE_OP_STARTUP_STAGE: zlog_err("Unhandled dplane data for %s", dplane_op2str(dplane_ctx_get_op(ctx))); res = ZEBRA_DPLANE_REQUEST_FAILURE; |
