1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

Fixed bug which arrised in afb8b57156

This commit is contained in:
Dennis Potter 2018-07-20 23:34:52 +02:00
parent be87846a5a
commit 8029c47113

View file

@ -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!");