Currently the rxe provider issues a print statement if it detects an invalid work request and also returns an error. A recently added python test case triggers such a message which is expected since the test is deliberately constructing invalid work requests. This patch removes the print statement which has no practical use. Signed-off-by: Bob Pearson <rpearsonhpe@xxxxxxxxx> --- providers/rxe/rxe.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/providers/rxe/rxe.c b/providers/rxe/rxe.c index 3533a325..42fc447c 100644 --- a/providers/rxe/rxe.c +++ b/providers/rxe/rxe.c @@ -1513,10 +1513,8 @@ static int post_one_send(struct rxe_qp *qp, struct rxe_wq *sq, length += ibwr->sg_list[i].length; err = validate_send_wr(qp, ibwr, length); - if (err) { - printf("validate send failed\n"); + if (err) return err; - } wqe = (struct rxe_send_wqe *)producer_addr(sq->queue); -- 2.30.2