1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

infiniband: remove some too verbose log messages

This commit is contained in:
Steffen Vogel 2019-03-31 22:14:45 +02:00
parent eb1ac25e08
commit 5a58daf306

View file

@ -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;
}