diff options
author | Ryujiro Shibuya <ryujiro.shibuya@owmobility.com> | 2020-01-22 12:11:42 +0000 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-02-25 19:18:49 +0000 |
commit | d8f48e2166747b529aa23762ac314dd686590c89 (patch) | |
tree | ebd94006c2eb6be5db9c0f1fec5ff7f984aeb38a /src/vnet/session/segment_manager.h | |
parent | 234fe894d80a6ebc7e457bc86f2eea80d5ef01ea (diff) |
session: basic fifo-tuning-logic
- Allowing application to register custom fifo-tuning-logic.
- Adding an example custom fifo-tuning-logic in hs_app/proxy.
Type: feature
Signed-off-by: Ryujiro Shibuya <ryujiro.shibuya@owmobility.com>
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I2aca14d1f23d5c3c9debb7f4c46aca3a15a8d1b9
Diffstat (limited to 'src/vnet/session/segment_manager.h')
-rw-r--r-- | src/vnet/session/segment_manager.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vnet/session/segment_manager.h b/src/vnet/session/segment_manager.h index cad95509b2e..688711a3312 100644 --- a/src/vnet/session/segment_manager.h +++ b/src/vnet/session/segment_manager.h @@ -19,6 +19,7 @@ #include <vppinfra/lock.h> #include <vppinfra/valloc.h> #include <svm/fifo_segment.h> +#include <vnet/session/session_types.h> typedef struct _segment_manager_props { @@ -34,6 +35,7 @@ typedef struct _segment_manager_props u8 n_slices; /**< number of fs slices/threads */ ssvm_segment_type_t segment_type; /**< seg type: if set to SSVM_N_TYPES, private segments are used */ + u32 max_fifo_size; /**< max fifo size */ u8 high_watermark; /**< memory usage high watermark % */ u8 low_watermark; /**< memory usage low watermark % */ } segment_manager_props_t; @@ -61,6 +63,7 @@ typedef struct _segment_manager */ svm_msg_q_t *event_queue; + u32 max_fifo_size; u8 high_watermark; u8 low_watermark; } segment_manager_t; |