mlxsw: core: Extend EMAD information reported to devlink hwerr
authorShalom Toledo <shalomt@mellanox.com>
Tue, 12 Nov 2019 06:48:28 +0000 (08:48 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 12 Nov 2019 18:54:02 +0000 (10:54 -0800)
Extend EMAD information reported to devlink hwerr tracepoint with
transaction id and reg id (both, hex and string).

Signed-off-by: Shalom Toledo <shalomt@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/core.c

index d834bdc632ef273c7eaec5c4940eea9b1e1c6f1d..d6a10727d4e6dbb81905c9cc2454b19c02790bd7 100644 (file)
@@ -1683,8 +1683,11 @@ int mlxsw_reg_trans_write(struct mlxsw_core *mlxsw_core,
 }
 EXPORT_SYMBOL(mlxsw_reg_trans_write);
 
+#define MLXSW_REG_TRANS_ERR_STRING_SIZE        256
+
 static int mlxsw_reg_trans_wait(struct mlxsw_reg_trans *trans)
 {
+       char err_string[MLXSW_REG_TRANS_ERR_STRING_SIZE];
        struct mlxsw_core *mlxsw_core = trans->core;
        int err;
 
@@ -1702,9 +1705,14 @@ static int mlxsw_reg_trans_wait(struct mlxsw_reg_trans *trans)
                        mlxsw_core_reg_access_type_str(trans->type),
                        trans->emad_status,
                        mlxsw_emad_op_tlv_status_str(trans->emad_status));
+
+               snprintf(err_string, MLXSW_REG_TRANS_ERR_STRING_SIZE,
+                        "(tid=%llx,reg_id=%x(%s)) %s\n", trans->tid,
+                        trans->reg->id, mlxsw_reg_id_str(trans->reg->id),
+                        mlxsw_emad_op_tlv_status_str(trans->emad_status));
+
                trace_devlink_hwerr(priv_to_devlink(mlxsw_core),
-                                   trans->emad_status,
-                                   mlxsw_emad_op_tlv_status_str(trans->emad_status));
+                                   trans->emad_status, err_string);
        }
 
        list_del(&trans->bulk_list);