From: Dave Barach Date: Tue, 7 Jun 2016 21:35:38 +0000 (-0400) Subject: VPP-83: fix collateral damage X-Git-Tag: v16.06-rc3^0 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=cf6511560ec7205642b2fb120defbef21b278526;p=vpp.git VPP-83: fix collateral damage Accidentally removed pthread_mutex_unlock (&root_rp->mutex) in the dead client scan case. Oops. Bad idea. Change-Id: I488b7e39d01c267052785bd346e8846351db90a9 Signed-off-by: Dave Barach --- diff --git a/vlib-api/vlibmemory/memory_shared.c b/vlib-api/vlibmemory/memory_shared.c index 71150fdc9cb..1684acfd622 100644 --- a/vlib-api/vlibmemory/memory_shared.c +++ b/vlib-api/vlibmemory/memory_shared.c @@ -287,6 +287,7 @@ int vl_map_shmem (char *region_name, int is_vlib) /* Clean up the root region client list */ pthread_mutex_lock (&root_rp->mutex); svm_client_scan_this_region_nolock (root_rp); + pthread_mutex_unlock (&root_rp->mutex); } pthread_mutex_unlock (&vlib_rp->mutex); am->vlib_rp = vlib_rp;