Re: [Intel-wired-lan] [PATCH iwl-next v2 3/6] ice: add Tx hang devlink health reporter

2024-07-30 Thread Mateusz Polchlopek
On 7/22/2024 11:23 AM, Mateusz Polchlopek wrote: On 7/14/2024 4:23 PM, Jakub Kicinski wrote: On Fri, 12 Jul 2024 05:32:48 -0400 Mateusz Polchlopek wrote: +    err = devlink_health_report(reporter, msg, priv_ctx); +    if (err) { +    struct ice_pf *pf = devlink_health_reporter_priv(rep

Re: [Intel-wired-lan] [PATCH iwl-next v2 3/6] ice: add Tx hang devlink health reporter

2024-07-22 Thread Mateusz Polchlopek
On 7/14/2024 4:23 PM, Jakub Kicinski wrote: On Fri, 12 Jul 2024 05:32:48 -0400 Mateusz Polchlopek wrote: + err = devlink_health_report(reporter, msg, priv_ctx); + if (err) { + struct ice_pf *pf = devlink_health_reporter_priv(reporter); + + dev_err(ice_p

Re: [Intel-wired-lan] [PATCH iwl-next v2 3/6] ice: add Tx hang devlink health reporter

2024-07-14 Thread Jakub Kicinski
On Fri, 12 Jul 2024 05:32:48 -0400 Mateusz Polchlopek wrote: > + err = devlink_health_report(reporter, msg, priv_ctx); > + if (err) { > + struct ice_pf *pf = devlink_health_reporter_priv(reporter); > + > + dev_err(ice_pf_to_dev(pf), > + "failed to

[Intel-wired-lan] [PATCH iwl-next v2 3/6] ice: add Tx hang devlink health reporter

2024-07-12 Thread Mateusz Polchlopek
From: Przemek Kitszel Add Tx hang devlink health reporter, see struct ice_tx_hang_event to see what is reported. Subsequent commits will extend it by more info, for now it dumps descriptors with little metadata. Signed-off-by: Przemek Kitszel Reviewed-by: Igor Bagnucki Reviewed-by: Wojciech D