From 4c8275ce6d6243fab26e09bff4227db600197c30 Mon Sep 17 00:00:00 2001 From: Arlin Davis Date: Tue, 16 Nov 2010 14:48:10 -0800 Subject: [PATCH] ucm: configure the recv channel FD to non-blocking Signed-off-by: Arlin Davis --- dapl/openib_ucm/device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dapl/openib_ucm/device.c b/dapl/openib_ucm/device.c index 6882c58..a628a78 100644 --- a/dapl/openib_ucm/device.c +++ b/dapl/openib_ucm/device.c @@ -497,6 +497,7 @@ static int ucm_service_create(IN DAPL_HCA *hca) tp->rch = ibv_create_comp_channel(hca->ib_hca_handle); if (!tp->rch) goto bail; + dapls_config_comp_channel(tp->rch); tp->scq = ibv_create_cq(hca->ib_hca_handle, tp->cqe, hca, NULL, 0); if (!tp->scq) -- 2.46.0