summaryrefslogtreecommitdiffstats
path: root/rpc/rpc-transport/rdma/src/rdma.c
diff options
context:
space:
mode:
Diffstat (limited to 'rpc/rpc-transport/rdma/src/rdma.c')
-rw-r--r--rpc/rpc-transport/rdma/src/rdma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc/rpc-transport/rdma/src/rdma.c b/rpc/rpc-transport/rdma/src/rdma.c
index 1f397e42206..551ac072079 100644
--- a/rpc/rpc-transport/rdma/src/rdma.c
+++ b/rpc/rpc-transport/rdma/src/rdma.c
@@ -4641,7 +4641,7 @@ gf_rdma_init (rpc_transport_t *this)
pthread_mutex_init (&priv->recv_mutex, NULL);
pthread_cond_init (&priv->recv_cond, NULL);
- pthread_mutex_lock (&ctx->lock);
+ LOCK (&ctx->lock);
{
if (ctx->ib == NULL) {
ctx->ib = __gf_rdma_ctx_create ();
@@ -4650,7 +4650,7 @@ gf_rdma_init (rpc_transport_t *this)
}
}
}
- pthread_mutex_unlock (&ctx->lock);
+ UNLOCK (&ctx->lock);
return ret;
}