aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRay Kinsella <mdr@ashroe.eu>2021-09-07 13:45:08 +0100
committerOle Tr�an <otroan@employees.org>2021-09-23 06:57:08 +0000
commit5161c4ab57e21f02c0b1398426927aa212e15e1f (patch)
tree8be118f6faba78230a6622227c8be67020491c77
parenta7d2aabae865f6d34a8307896c2ad0056c4984dc (diff)
stats: revert stat_validate_counter_vector3 non-static
This reverts commit c30157811e4c8e870d2680b08ecd3a38dff2d53b. Type: refactor Signed-off-by: Ray Kinsella <mdr@ashroe.eu> Change-Id: Id011c8e5acb1613e09fd339ce614159c0acd651a
-rw-r--r--src/vpp/stats/stat_segment.h3
-rw-r--r--src/vpp/stats/stat_segment_provider.c2
2 files changed, 1 insertions, 4 deletions
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;