From 9906cb2959e41b5922314cfbb6e1dd542def9857 Mon Sep 17 00:00:00 2001 From: Ivan Malov Date: Tue, 2 Apr 2019 10:28:43 +0100 Subject: [PATCH] net/sfc: improve log about missing HW TSO support Said message cannot be considered as warning since the PMD anyway reports available offload capabilities by means of device info interface. Make this log message informational and improve its formatting by placing the text itself on the same line. Signed-off-by: Ivan Malov Signed-off-by: Andrew Rybchenko --- drivers/net/sfc/sfc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/sfc/sfc.c b/drivers/net/sfc/sfc.c index fd4156f786..dee468f89e 100644 --- a/drivers/net/sfc/sfc.c +++ b/drivers/net/sfc/sfc.c @@ -747,8 +747,7 @@ sfc_attach(struct sfc_adapter *sa) if (sa->priv.dp_tx->features & SFC_DP_TX_FEAT_TSO) { sa->tso = encp->enc_fw_assisted_tso_v2_enabled; if (!sa->tso) - sfc_warn(sa, - "TSO support isn't available on this adapter"); + sfc_info(sa, "TSO support isn't available on this adapter"); } sfc_log_init(sa, "estimate resource limits"); -- 2.20.1