From 5161c4ab57e21f02c0b1398426927aa212e15e1f Mon Sep 17 00:00:00 2001 From: Ray Kinsella Date: Tue, 7 Sep 2021 13:45:08 +0100 Subject: stats: revert stat_validate_counter_vector3 non-static This reverts commit c30157811e4c8e870d2680b08ecd3a38dff2d53b. Type: refactor Signed-off-by: Ray Kinsella Change-Id: Id011c8e5acb1613e09fd339ce614159c0acd651a --- src/vpp/stats/stat_segment.h | 3 --- src/vpp/stats/stat_segment_provider.c | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) (limited to 'src/vpp') diff --git a/src/vpp/stats/stat_segment.h b/src/vpp/stats/stat_segment.h index 2858003bb73..f5862a684e4 100644 --- a/src/vpp/stats/stat_segment.h +++ b/src/vpp/stats/stat_segment.h @@ -111,9 +111,6 @@ void stat_segment_set_state_counter (u32 index, u64 value); void stat_segment_poll_add (u32 vector_index, stat_segment_update_fn update_fn, u32 caller_index, u32 interval); -counter_t **stat_validate_counter_vector3 (counter_t **counters, u32 max1, - u32 max2); - u32 stat_segment_new_entry (u8 *name, stat_directory_type_t t); void vlib_stats_register_mem_heap (clib_mem_heap_t *heap); void vlib_stat_segment_lock (void); diff --git a/src/vpp/stats/stat_segment_provider.c b/src/vpp/stats/stat_segment_provider.c index 30e03be45b9..766261ce0e0 100644 --- a/src/vpp/stats/stat_segment_provider.c +++ b/src/vpp/stats/stat_segment_provider.c @@ -63,7 +63,7 @@ stat_provider_mem_usage_update_fn (stat_segment_directory_entry_t *e, cb[STAT_MEM_RELEASABLE] = usage.bytes_overhead; } -counter_t ** +static counter_t ** stat_validate_counter_vector3 (counter_t **counters, u32 max1, u32 max2) { stat_segment_main_t *sm = &stat_segment_main; -- cgit 1.2.3-korg