From e8887c3139a74b570b032a003db60e9a34eb976c Mon Sep 17 00:00:00 2001 From: Marcin Wojtas Date: Wed, 16 Jan 2019 01:54:04 +0000 Subject: Suppress excessive print in ENA HAL In FreeBSD, this is normal situation that the Tx ring is being full. In that case, the packet is put back into drbr and the next attempt to send it is taken after the cleanup. Too much logs like this can cause system instability and even cause the device reset (because keep alive or cleanup could be missed). To fix that, the log level of this message is changed to debug. Submitted by: Michal Krawczyk Obtained from: Semihalf Sponsored by: Amazon, Inc. --- ena_eth_com.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ena_eth_com.c b/ena_eth_com.c index 190de1f0ea428..ce42fd1fecd37 100644 --- a/ena_eth_com.c +++ b/ena_eth_com.c @@ -386,7 +386,7 @@ int ena_com_prepare_tx(struct ena_com_io_sq *io_sq, /* num_bufs +1 for potential meta desc */ if (!ena_com_sq_have_enough_space(io_sq, num_bufs + 1)) { - ena_trc_err("Not enough space in the tx queue\n"); + ena_trc_dbg("Not enough space in the tx queue\n"); return ENA_COM_NO_MEM; } -- cgit v1.2.3