summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rpc/rpc-transport/rdma/src/rdma.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/rpc/rpc-transport/rdma/src/rdma.c b/rpc/rpc-transport/rdma/src/rdma.c
index cd42c6e94e4..57049967b20 100644
--- a/rpc/rpc-transport/rdma/src/rdma.c
+++ b/rpc/rpc-transport/rdma/src/rdma.c
@@ -3129,10 +3129,10 @@ rdma_recv_reply (rdma_peer_t *peer, rdma_post_t *post)
}
ctx = rpc_req->conn_private;
- if ((post->ctx.iobref != NULL) && (ctx->iobref != NULL)) {
- iobref_merge (post->ctx.iobref, ctx->iobref);
+ if ((post->ctx.iobref != NULL) && (ctx->rsp_iobref != NULL)) {
+ iobref_merge (post->ctx.iobref, ctx->rsp_iobref);
} else if (post->ctx.iobref == NULL) {
- post->ctx.iobref = iobref_ref (ctx->iobref);
+ post->ctx.iobref = iobref_ref (ctx->rsp_iobref);
}
ret = 0;