Skip to content

Commit

Permalink
Merge pull request #87 from linux-rdma/rdma-core-dc-support
Browse files Browse the repository at this point in the history
Removed warning message for ibv_post_send() fallback
  • Loading branch information
dimasique1 authored May 9, 2020
2 parents 79b8852 + 48dc5eb commit 2490003
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# SOFTWARE.
dnl Process this file with autoconf to produce a configure script.

AC_INIT([perftest],[5.91],[[email protected]])
AC_INIT([perftest],[5.92],[[email protected]])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_MACRO_DIR([m4])
Expand Down
1 change: 1 addition & 0 deletions src/perftest_parameters.c
Original file line number Diff line number Diff line change
Expand Up @@ -2831,6 +2831,7 @@ void ctx_print_test_info(struct perftest_parameters *user_param)
#else
printf(" PCIe relax order: %s\n", "Unsupported");
#endif
printf(" ibv_wr* API : %s\n", user_param->use_old_post_send ? "OFF" : "ON");
if (user_param->machine == CLIENT || user_param->duplex) {
printf(" TX depth : %d\n",user_param->tx_depth);
}
Expand Down
2 changes: 0 additions & 2 deletions src/perftest_resources.c
Original file line number Diff line number Diff line change
Expand Up @@ -1383,8 +1383,6 @@ int verify_params_with_device_context(struct ibv_context *context,
{
if (!user_param->use_old_post_send)
{
fprintf(stderr, " Warning: The device chosen doesn't support WR post send API!\n");
fprintf(stderr, " Warning: Falling back to using ibv_post_send()\n");
user_param->use_old_post_send = 1;
}
}
Expand Down

0 comments on commit 2490003

Please sign in to comment.