mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 13:41:30 +00:00
net/mlx5e: Add error print in ETS init
ETS initialization might fail, add a print to indicate
such failures.
Fixes: 08fb1dacdd
("net/mlx5e: Support DCBNL IEEE ETS")
Signed-off-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:
parent
e556f6dd47
commit
97c8c3aa48
1 changed files with 6 additions and 2 deletions
|
@ -922,8 +922,9 @@ static void mlx5e_dcbnl_query_dcbx_mode(struct mlx5e_priv *priv,
|
||||||
|
|
||||||
static void mlx5e_ets_init(struct mlx5e_priv *priv)
|
static void mlx5e_ets_init(struct mlx5e_priv *priv)
|
||||||
{
|
{
|
||||||
int i;
|
|
||||||
struct ieee_ets ets;
|
struct ieee_ets ets;
|
||||||
|
int err;
|
||||||
|
int i;
|
||||||
|
|
||||||
if (!MLX5_CAP_GEN(priv->mdev, ets))
|
if (!MLX5_CAP_GEN(priv->mdev, ets))
|
||||||
return;
|
return;
|
||||||
|
@ -940,7 +941,10 @@ static void mlx5e_ets_init(struct mlx5e_priv *priv)
|
||||||
ets.prio_tc[0] = 1;
|
ets.prio_tc[0] = 1;
|
||||||
ets.prio_tc[1] = 0;
|
ets.prio_tc[1] = 0;
|
||||||
|
|
||||||
mlx5e_dcbnl_ieee_setets_core(priv, &ets);
|
err = mlx5e_dcbnl_ieee_setets_core(priv, &ets);
|
||||||
|
if (err)
|
||||||
|
netdev_err(priv->netdev,
|
||||||
|
"%s, Failed to init ETS: %d\n", __func__, err);
|
||||||
}
|
}
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue