diff options
author | Florin Coras <fcoras@cisco.com> | 2021-01-09 14:34:01 -0800 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2021-01-09 18:50:08 -0800 |
commit | 0bc78d80363efc22d07171473933d1b0016440e4 (patch) | |
tree | 702dbe373faf878da86d5016f28f287175d692f5 /src/svm/fifo_segment.h | |
parent | b716e3836c90bc90642076b6d895ad7c9c00fa9a (diff) |
session svm: fix fifo migration
Allocate and attach a new pair of private fifos in the right private
slice when a session is cloned. This ensures that private fifos are not
shared between workers.
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ib700d18104d2ca79aa8a07434cdcdcab0bef13a5
Diffstat (limited to 'src/svm/fifo_segment.h')
-rw-r--r-- | src/svm/fifo_segment.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/svm/fifo_segment.h b/src/svm/fifo_segment.h index 8266690d4ed..268b48b39f6 100644 --- a/src/svm/fifo_segment.h +++ b/src/svm/fifo_segment.h @@ -139,8 +139,8 @@ svm_fifo_t *fifo_segment_alloc_fifo_w_offset (fifo_segment_t *fs, */ void fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f); -void fifo_segment_detach_fifo (fifo_segment_t * fs, svm_fifo_t * f); -void fifo_segment_attach_fifo (fifo_segment_t * fs, svm_fifo_t * f, +void fifo_segment_detach_fifo (fifo_segment_t *fs, svm_fifo_t **f); +void fifo_segment_attach_fifo (fifo_segment_t *fs, svm_fifo_t **f, u32 slice_index); uword fifo_segment_fifo_offset (svm_fifo_t *f); |