From 960eeea7ea48d91c1f2ec3a85a7a84f56619be2a Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Mon, 2 Dec 2019 23:28:50 +0000 Subject: fib: constify the adjacency in the rewrite nodes Type: refactor Signed-off-by: Neale Ranns Change-Id: I3aad20b35d89fc541fdf185096d71ca12b09a6e2 --- src/vnet/lisp-gpe/lisp_gpe_adjacency.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/vnet/lisp-gpe/lisp_gpe_adjacency.c') diff --git a/src/vnet/lisp-gpe/lisp_gpe_adjacency.c b/src/vnet/lisp-gpe/lisp_gpe_adjacency.c index 4b5ca17dad5..d9c22a4bbbb 100644 --- a/src/vnet/lisp-gpe/lisp_gpe_adjacency.c +++ b/src/vnet/lisp-gpe/lisp_gpe_adjacency.c @@ -206,7 +206,8 @@ lisp_afi_from_vnet_link_type (vnet_link_t link) } static void -lisp_gpe_increment_stats_counters (lisp_cp_main_t * lcm, ip_adjacency_t * adj, +lisp_gpe_increment_stats_counters (lisp_cp_main_t * lcm, + const ip_adjacency_t * adj, vlib_buffer_t * b) { lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main (); @@ -273,7 +274,8 @@ lisp_gpe_increment_stats_counters (lisp_cp_main_t * lcm, ip_adjacency_t * adj, static void lisp_gpe_fixup (vlib_main_t * vm, - ip_adjacency_t * adj, vlib_buffer_t * b, const void *data) + const ip_adjacency_t * adj, + vlib_buffer_t * b, const void *data) { lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); -- cgit 1.2.3-korg