From 5a58daf30663dc3d12842021c4dcf4eb1ba3d037 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 31 Mar 2019 22:14:45 +0200 Subject: [PATCH] infiniband: remove some too verbose log messages --- lib/nodes/infiniband.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/nodes/infiniband.c b/lib/nodes/infiniband.c index 244441bdf..9e1b61341 100644 --- a/lib/nodes/infiniband.c +++ b/lib/nodes/infiniband.c @@ -343,8 +343,6 @@ int ib_check(struct node *n) { struct infiniband *ib = (struct infiniband *) n->_vd; - info("Starting check of node %s", node_name(n)); - /* Check if read substraction makes sense */ if (ib->conn.buffer_subtraction < 2 * n->in.vectorize) error("The buffer substraction value must be bigger than 2 * in.vectorize"); @@ -389,8 +387,6 @@ int ib_check(struct node *n) warning("You changed the default value of max_inline_data. This might influence the maximum number " "of outstanding Work Requests in the Queue Pair and can be a reason for the Queue Pair creation to fail"); - info("Finished check of node %s", node_name(n)); - return 0; }