From 8029c471137f812e5a5a14cb363422cb7029ebec Mon Sep 17 00:00:00 2001 From: Dennis Potter Date: Fri, 20 Jul 2018 23:34:52 +0200 Subject: [PATCH] Fixed bug which arrised in afb8b571563857d2c7393fd9b64362334587f30f --- lib/nodes/infiniband.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nodes/infiniband.c b/lib/nodes/infiniband.c index 7945242a1..b27bc3e0a 100644 --- a/lib/nodes/infiniband.c +++ b/lib/nodes/infiniband.c @@ -248,7 +248,7 @@ int ib_parse(struct node *n, json_t *cfg) } else if (strcmp(port_space, "RDMA_PS_UDP") == 0) { ib->conn.port_space = RDMA_PS_UDP; - ib->qp_init.qp_type = IBV_QPT_UC; + ib->qp_init.qp_type = IBV_QPT_UD; } else if (strcmp(port_space, "RDMA_PS_IB") == 0 || strcmp(port_space, "RDMA_PS_IPOIB")) error("Although RDMA_PS_IB and RDMA_PS_IPOIB are valid in rdma_cma.h, they are not supported by VILLAS!");