From c8972fe506c78530a3e4085453e86a0b85b245ef Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Mon, 2 Dec 2019 23:10:08 +0000 Subject: fib feature: Code mechanics to decouple dependency of feature on adj Type: refactor Signed-off-by: Neale Ranns Change-Id: I1d8b88fe1eefc850865297b4f025b97e6373a6bd --- src/vnet/adj/adj.c | 7 +++++-- src/vnet/adj/adj.h | 6 ------ 2 files changed, 5 insertions(+), 8 deletions(-) (limited to 'src/vnet/adj') diff --git a/src/vnet/adj/adj.c b/src/vnet/adj/adj.c index 0966d97cc6d..a603925e905 100644 --- a/src/vnet/adj/adj.c +++ b/src/vnet/adj/adj.c @@ -405,10 +405,11 @@ adj_feature_update_walk_cb (adj_index_t ai, return (ADJ_WALK_RC_CONTINUE); } -void +static void adj_feature_update (u32 sw_if_index, u8 arc_index, - u8 is_enable) + u8 is_enable, + void *data) { /* * Walk all the adjacencies on the interface to update the cached @@ -590,6 +591,8 @@ adj_module_init (vlib_main_t * vm) adj_midchain_module_init(); adj_mcast_module_init(); + vnet_feature_register(adj_feature_update, NULL); + return (NULL); } diff --git a/src/vnet/adj/adj.h b/src/vnet/adj/adj.h index 9d1577fe911..58e5ebf5d98 100644 --- a/src/vnet/adj/adj.h +++ b/src/vnet/adj/adj.h @@ -389,12 +389,6 @@ extern int adj_is_up (adj_index_t ai); */ extern const u8* adj_get_rewrite (adj_index_t ai); -/** - * @brief Notify the adjacency subsystem that the features settings for - * an interface have changed - */ -extern void adj_feature_update (u32 sw_if_index, u8 arc_index, u8 is_enable); - /** * @brief descend the FIB graph looking for loops * -- cgit 1.2.3-korg