diff options
author | Florin Coras <fcoras@cisco.com> | 2021-12-22 12:54:17 -0800 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2021-12-23 16:17:57 +0000 |
commit | cdfe8abc613a0aa936963d31bc60cec86a5c641d (patch) | |
tree | b0a075e152358b692a53f6545a5e3345c9df2264 /src/svm/fifo_segment.h | |
parent | e6387b2b9fdaca33d50c1074dda5d41e1092e8ad (diff) |
session svm: track fs and seg manager index in fs
Simplifies allocation of fifos as fifo segment and segment manager
indices can be set at alloc time.
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ibd357b3ff0279d8deefcdcb17010b4068007ccb7
Diffstat (limited to 'src/svm/fifo_segment.h')
-rw-r--r-- | src/svm/fifo_segment.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/svm/fifo_segment.h b/src/svm/fifo_segment.h index 440f1bb6a02..ec184207269 100644 --- a/src/svm/fifo_segment.h +++ b/src/svm/fifo_segment.h @@ -74,6 +74,8 @@ typedef struct fifo_slice_private_t *slices; /**< private slice information */ svm_msg_q_t *mqs; /**< private vec of attached mqs */ uword max_byte_index; /**< max byte index for segment */ + u32 sm_index; /**< owner segment manager index */ + u32 fs_index; /**< fs index in sm pool */ u8 n_slices; /**< number of fifo segment slices */ u8 flags; /**< private fifo segment flags */ u8 high_watermark; /**< memory pressure watermark high */ |