summaryrefslogtreecommitdiff
path: root/zebra/zebra_rib.c
diff options
context:
space:
mode:
authorJakub Urbańczyk <xthaid@gmail.com>2020-07-15 15:12:22 +0200
committerJakub Urbańczyk <xthaid@gmail.com>2020-08-10 21:33:00 +0200
commit86d562236224187bde6d27e69cce8c74ac1012e2 (patch)
treec81cf37060d9c21dc5d4c006c5b099efabd56c7c /zebra/zebra_rib.c
parentfef24b03399d26808bd57af8e318b0e818c7ffef (diff)
zebra: remove "PENDING" dplane request state
This request state is redundant with new message batching interface. Signed-off-by: Jakub Urbańczyk <xthaid@gmail.com>
Diffstat (limited to 'zebra/zebra_rib.c')
-rw-r--r--zebra/zebra_rib.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c
index afae449e7c..55dccc4a12 100644
--- a/zebra/zebra_rib.c
+++ b/zebra/zebra_rib.c
@@ -497,9 +497,6 @@ void rib_install_kernel(struct route_node *rn, struct route_entry *re,
if (zvrf)
zvrf->installs++;
break;
- /* Should never happen */
- case ZEBRA_DPLANE_REQUEST_PENDING:
- break;
}
return;
@@ -544,9 +541,6 @@ void rib_uninstall_kernel(struct route_node *rn, struct route_entry *re)
if (zvrf)
zvrf->removals++;
break;
- /* Should never happen */
- case ZEBRA_DPLANE_REQUEST_PENDING:
- break;
}
return;