diff options
Diffstat (limited to 'src/vnet/adj/adj.c')
-rw-r--r-- | src/vnet/adj/adj.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vnet/adj/adj.c b/src/vnet/adj/adj.c index ed4bada6f24..abfe8729b39 100644 --- a/src/vnet/adj/adj.c +++ b/src/vnet/adj/adj.c @@ -353,7 +353,7 @@ adj_mtu_update_walk_cb (adj_index_t ai, return (ADJ_WALK_RC_CONTINUE); } -static void +static walk_rc_t adj_sw_mtu_update (vnet_main_t * vnm, u32 sw_if_index, void *ctx) @@ -362,6 +362,8 @@ adj_sw_mtu_update (vnet_main_t * vnm, * Walk all the adjacencies on the interface to update the cached MTU */ adj_walk (sw_if_index, adj_mtu_update_walk_cb, NULL); + + return (WALK_CONTINUE); } void |