diff options
author | Florin Coras <fcoras@cisco.com> | 2021-07-21 18:17:20 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2021-07-22 16:50:46 +0000 |
commit | f6e284b20c7a5b774ae21934fbf3f07801d61fc2 (patch) | |
tree | bebb5d84fff954af8762c70724559a4c721dd8e1 /src/vcl/vcl_private.h | |
parent | 4cef6de5915d22508c3e79335fbbe226f47ad0f5 (diff) |
session vcl: explit mq indices in ctrl messages
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I8e80252b85dda9a8f5699109264dc1b913581442
Diffstat (limited to 'src/vcl/vcl_private.h')
-rw-r--r-- | src/vcl/vcl_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vcl/vcl_private.h b/src/vcl/vcl_private.h index fdc4ff8cdbd..3233aeca4b2 100644 --- a/src/vcl/vcl_private.h +++ b/src/vcl/vcl_private.h @@ -721,8 +721,8 @@ void vcl_segment_detach (u64 segment_handle); void vcl_send_session_unlisten (vcl_worker_t * wrk, vcl_session_t * s); int vcl_segment_attach_session (uword segment_handle, uword rxf_offset, - uword txf_offset, uword mq_offset, u8 is_ct, - vcl_session_t *s); + uword txf_offset, uword mq_offset, + u32 mq_index, u8 is_ct, vcl_session_t *s); int vcl_segment_attach_mq (uword segment_handle, uword mq_offset, u32 mq_index, svm_msg_q_t **mq); int vcl_segment_discover_mqs (uword segment_handle, int *fds, u32 n_fds); |