linux-rdma / qperf

GNU General Public License v2.0
84 stars 36 forks source link

qperf XRC functionality fails to build #3

Open bsmith94 opened 6 years ago

bsmith94 commented 6 years ago

qperf is written against an old version of the ibverbs XRC API. The build fails to detect that ibverbs is XRC-capable. Also, if XRC detection is corrected, the current XRC code fails to build.

This patch corrects XRC detection:

--- a/configure.in
+++ b/configure.in
@@ -2,7 +2,7 @@
 AM_INIT_AUTOMAKE(qperf, 0.4.10)
 AC_PROG_CC
 AC_CHECK_LIB(ibverbs, ibv_open_device, RDMA=1)
-AC_CHECK_LIB(ibverbs, ibv_open_xrc_domain, HAS_XRC=1)
+AC_CHECK_LIB(ibverbs, ibv_cmd_open_xrcd, HAS_XRC=1)
 AC_CHECK_LIB(rdmacm, rdma_create_id)
 AM_CONDITIONAL(RDMA, test -n "$RDMA")
 AM_CONDITIONAL(HAS_XRC, test -n "$HAS_XRC")

Once that change is made, the build fails due to: