This patches increases log level for error reporting when stopping
the transfer proxy port failed. Stopping can fail with EBUSY when
related representor ports are still running.

Fixes: 483181f7b6dd ("net/mlx5: support device control of representor matching")

Signed-off-by: Dariusz Sosnowski <dsosnow...@nvidia.com>
---
 drivers/net/mlx5/mlx5_trigger.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/mlx5/mlx5_trigger.c b/drivers/net/mlx5/mlx5_trigger.c
index 4b821a1076..310a84729e 100644
--- a/drivers/net/mlx5/mlx5_trigger.c
+++ b/drivers/net/mlx5/mlx5_trigger.c
@@ -1361,9 +1361,9 @@ mlx5_hw_proxy_port_allowed_stop(struct rte_eth_dev *dev)
                        representor_started = true;
        }
        if (representor_started) {
-               DRV_LOG(INFO, "Failed to stop port %u: attached representor 
ports"
-                             " must be stopped before stopping transfer proxy 
port",
-                             dev->data->port_id);
+               DRV_LOG(ERR, "Failed to stop port %u: attached representor 
ports"
+                            " must be stopped before stopping transfer proxy 
port",
+                            dev->data->port_id);
                rte_errno = EBUSY;
                return -rte_errno;
        }
-- 
2.25.1

Reply via email to