summaryrefslogtreecommitdiff
path: root/zebra/zebra_rib.c
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2021-09-21 10:51:37 -0400
committerGitHub <noreply@github.com>2021-09-21 10:51:37 -0400
commit5b311cf18d3612a7d4f08e52bac7c44b4bfaed4d (patch)
tree42b54fdf043570e547a19c81224d2d63543395b0 /zebra/zebra_rib.c
parentf0a477719266cdfa7d22ba0f9240af03fc10aeff (diff)
parentc6f55fb28f188b59383987f413d802e09c8bce8a (diff)
Merge pull request #9052 from mjstapp/dplane_incoming_dev
zebra: Move incoming netlink interface address change events to the dplane pthread
Diffstat (limited to 'zebra/zebra_rib.c')
-rw-r--r--zebra/zebra_rib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c
index 1fb4e5e6fc..24c51e485f 100644
--- a/zebra/zebra_rib.c
+++ b/zebra/zebra_rib.c
@@ -4209,6 +4209,11 @@ static int rib_process_dplane_results(struct thread *thread)
zebra_pbr_dplane_result(ctx);
break;
+ case DPLANE_OP_INTF_ADDR_ADD:
+ case DPLANE_OP_INTF_ADDR_DEL:
+ zebra_if_addr_update_ctx(ctx);
+ break;
+
/* Some op codes not handled here */
case DPLANE_OP_ADDR_INSTALL:
case DPLANE_OP_ADDR_UNINSTALL: