Skip to content

Commit 2490003

Browse files
authored
Merge pull request #87 from linux-rdma/rdma-core-dc-support
Removed warning message for ibv_post_send() fallback
2 parents 79b8852 + 48dc5eb commit 2490003

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# SOFTWARE.
3030
dnl Process this file with autoconf to produce a configure script.
3131

32-
AC_INIT([perftest],[5.91],[[email protected]])
32+
AC_INIT([perftest],[5.92],[[email protected]])
3333
AC_CONFIG_HEADERS([config.h])
3434
AC_CONFIG_AUX_DIR([config])
3535
AC_CONFIG_MACRO_DIR([m4])

src/perftest_parameters.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2831,6 +2831,7 @@ void ctx_print_test_info(struct perftest_parameters *user_param)
28312831
#else
28322832
printf(" PCIe relax order: %s\n", "Unsupported");
28332833
#endif
2834+
printf(" ibv_wr* API : %s\n", user_param->use_old_post_send ? "OFF" : "ON");
28342835
if (user_param->machine == CLIENT || user_param->duplex) {
28352836
printf(" TX depth : %d\n",user_param->tx_depth);
28362837
}

src/perftest_resources.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1383,8 +1383,6 @@ int verify_params_with_device_context(struct ibv_context *context,
13831383
{
13841384
if (!user_param->use_old_post_send)
13851385
{
1386-
fprintf(stderr, " Warning: The device chosen doesn't support WR post send API!\n");
1387-
fprintf(stderr, " Warning: Falling back to using ibv_post_send()\n");
13881386
user_param->use_old_post_send = 1;
13891387
}
13901388
}

0 commit comments

Comments
 (0)