diff options
author | Florin Coras <fcoras@cisco.com> | 2018-11-29 12:40:10 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2018-11-30 07:21:02 +0000 |
commit | fa76a76bf3388f09d55d0c83e7aea507c44f9619 (patch) | |
tree | ee9f51236f6e4acf5627f11f27aff73de9d1fe15 /src/svm/svm_fifo.h | |
parent | 4744ddbfe0012861895dbd33487569e46b81554b (diff) |
session: segment handle in accept/connect notifications
Change-Id: I03884b6cde9d4c38ae13d1994fd8d37d44016ef0
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/svm/svm_fifo.h')
-rw-r--r-- | src/svm/svm_fifo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/svm/svm_fifo.h b/src/svm/svm_fifo.h index 791b513a4a6..9bba85fddf4 100644 --- a/src/svm/svm_fifo.h +++ b/src/svm/svm_fifo.h @@ -39,6 +39,7 @@ format_function_t format_ooo_list; #define SVM_FIFO_TRACE (0) #define OOO_SEGMENT_INVALID_INDEX ((u32)~0) #define SVM_FIFO_INVALID_SESSION_INDEX ((u32)~0) +#define SVM_FIFO_INVALID_INDEX ((u32)~0) typedef struct { @@ -61,6 +62,7 @@ typedef struct _svm_fifo u8 master_thread_index; u8 client_thread_index; u32 segment_manager; + u32 segment_index; u32 ct_session_index; /**< Local session index for vpp */ CLIB_CACHE_LINE_ALIGN_MARK (end_shared); u32 head; |