diff options
author | Dave Barach <dave@barachs.net> | 2020-06-03 08:05:15 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-06-04 14:42:26 +0000 |
commit | 8341f76fd1cd4351961cd8161cfed2814fc55103 (patch) | |
tree | 420010b919dacc54dde85e9f5d5b6fc305775aa2 /src/vlib/counter.h | |
parent | c39c79c5aa7b5410f3aad4a770a741ab04f7dcc5 (diff) |
fib: add barrier sync, pool/vector expand cases
load_balance_alloc_i(...) is not thread safe when the
load_balance_pool or combined counter vectors expand.
Type: fix
Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: I7f295ed77350d1df0434d5ff461eedafe79131de
Diffstat (limited to 'src/vlib/counter.h')
-rw-r--r-- | src/vlib/counter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vlib/counter.h b/src/vlib/counter.h index 7c9094727e2..8a5aed4c194 100644 --- a/src/vlib/counter.h +++ b/src/vlib/counter.h @@ -314,6 +314,9 @@ void vlib_free_simple_counter (vlib_simple_counter_main_t * cm); void vlib_validate_combined_counter (vlib_combined_counter_main_t * cm, u32 index); +int vlib_validate_combined_counter_will_expand + (vlib_combined_counter_main_t * cm, u32 index); + void vlib_free_combined_counter (vlib_combined_counter_main_t * cm); /** Obtain the number of simple or combined counters allocated. |