diff options
author | Florin Coras <fcoras@cisco.com> | 2022-03-01 18:07:09 -0800 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2022-03-02 19:35:52 +0000 |
commit | fe6d8a37062a28f28ee63c3e9177d18c10ed96e1 (patch) | |
tree | 460197f488672213a0553a67d8dc5d754425bc7c /src/vcl/vcl_private.h | |
parent | 6a2c6a0445b243e0dc7e0c37250527bfd90dd55d (diff) |
vcl: fix segment detach post api disconnect
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I0982f0f5c8186f9ed962db49a14f35aa19f6a276
Diffstat (limited to 'src/vcl/vcl_private.h')
-rw-r--r-- | src/vcl/vcl_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vcl/vcl_private.h b/src/vcl/vcl_private.h index e4f1c149b2d..9c905333440 100644 --- a/src/vcl/vcl_private.h +++ b/src/vcl/vcl_private.h @@ -716,7 +716,7 @@ int vcl_send_worker_rpc (u32 dst_wrk_index, void *data, u32 data_len); int vcl_segment_attach (u64 segment_handle, char *name, ssvm_segment_type_t type, int fd); void vcl_segment_detach (u64 segment_handle); -void vcl_segment_detach_all (); +void vcl_segment_detach_segments (u32 *seg_indices); void vcl_send_session_unlisten (vcl_worker_t * wrk, vcl_session_t * s); int vcl_segment_attach_session (uword segment_handle, uword rxf_offset, |