diff options
author | Florin Coras <fcoras@cisco.com> | 2023-02-07 09:01:59 -0800 |
---|---|---|
committer | Dave Barach <vpp@barachs.net> | 2023-02-07 18:19:51 +0000 |
commit | aaad4f977cd7337b37cc6f00019f601f07abdced (patch) | |
tree | 9b65d6ba1265737e6a1cc035760ebc9c6e892ea3 /src | |
parent | f1a232fd863e0e081a8edf8b1859a9417debb7c7 (diff) |
vcl: drop lock on segment attach failure
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I3bc2c7986f492b7b7dfbc84e4893202354223790
Diffstat (limited to 'src')
-rw-r--r-- | src/vcl/vcl_private.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vcl/vcl_private.c b/src/vcl/vcl_private.c index 589380d27aa..847e32c80f0 100644 --- a/src/vcl/vcl_private.c +++ b/src/vcl/vcl_private.c @@ -435,6 +435,7 @@ vcl_segment_attach (u64 segment_handle, char *name, ssvm_segment_type_t type, if ((rv = fifo_segment_attach (&vcm->segment_main, a))) { clib_warning ("svm_fifo_segment_attach ('%s') failed", name); + clib_rwlock_writer_unlock (&vcm->segment_table_lock); return rv; } hash_set (vcm->segment_table, segment_handle, a->new_segment_indices[0]); |