diff options
Diffstat (limited to 'src/kiro-client.c')
-rw-r--r-- | src/kiro-client.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/kiro-client.c b/src/kiro-client.c index 8618c46..06026eb 100644 --- a/src/kiro-client.c +++ b/src/kiro-client.c @@ -205,16 +205,6 @@ kiro_client_connect (KiroClient *self, const char *address, const char *port) return -1; } - ctx->cf_mr_send = (struct kiro_rdma_mem *)calloc (1, sizeof (struct kiro_rdma_mem)); - ctx->cf_mr_recv = (struct kiro_rdma_mem *)calloc (1, sizeof (struct kiro_rdma_mem)); - - if (!ctx->cf_mr_recv || !ctx->cf_mr_send) { - g_critical ("Failed to allocate Control Flow Memory Container (Out of memory?)"); - kiro_destroy_connection_context (&ctx); - rdma_destroy_ep (priv->conn); - return -1; - } - ctx->cf_mr_recv = kiro_create_rdma_memory (priv->conn->pd, sizeof (struct kiro_ctrl_msg), IBV_ACCESS_LOCAL_WRITE); ctx->cf_mr_send = kiro_create_rdma_memory (priv->conn->pd, sizeof (struct kiro_ctrl_msg), IBV_ACCESS_LOCAL_WRITE); |