Skip to content

Commit

Permalink
Revert "perftest: Add minimum rx_depth size in case of UD qp type"
Browse files Browse the repository at this point in the history
This reverts commit c6e57af3b37e47de77d36f664bbce39406d77398.
  • Loading branch information
HassanKhadour committed Jan 17, 2024
1 parent def27db commit d414c55
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/perftest_parameters.c
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ static void force_dependecies(struct perftest_parameters *user_param)

if ((user_param->verb == SEND || user_param->verb == WRITE_IMM) &&
user_param->rx_depth > user_param->iters) {
user_param->rx_depth = user_param->iters > MIN_UD_RX_DEPTH ? user_param->iters : MIN_UD_RX_DEPTH;
user_param->rx_depth = user_param->iters;
}

if (user_param->connection_type == UD || user_param->connection_type == UC) {
Expand Down
1 change: 0 additions & 1 deletion src/perftest_parameters.h
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@
#define MAX_INLINE_UD (1024)
#define MIN_EQ_NUM (0)
#define MAX_EQ_NUM (2048)
#define MIN_UD_RX_DEPTH (100)

/* Raw etherent defines */
#define RAWETH_MIN_MSG_SIZE (64)
Expand Down

0 comments on commit d414c55

Please sign in to comment.