mirror of
https://github.com/torvalds/linux.git
synced 2026-08-01 12:11:59 +02:00
i40e: add link_down_events statistic
Introduce a link_down_events counter to the i40e driver, incremented each time the link transitions from up to down. This counter can help diagnose issues related to link stability, such as port flapping or unexpected link drops. The value is exposed via ethtool's get_link_ext_stats() interface. Co-developed-by: Martyna Szapar-Mudlaw <martyna.szapar-mudlaw@linux.intel.com> Signed-off-by: Martyna Szapar-Mudlaw <martyna.szapar-mudlaw@linux.intel.com> Reviewed-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> Signed-off-by: Dawid Osuchowski <dawid.osuchowski@linux.intel.com> Reviewed-by: Simon Horman <horms@kernel.org> Tested-by: Rinitha S <sx.rinitha@intel.com> (A Contingent worker at Intel) Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
This commit is contained in:
parent
e7aee24a89
commit
f0768aec37
|
|
@ -548,6 +548,7 @@ struct i40e_pf {
|
|||
u16 empr_count; /* EMP reset count */
|
||||
u16 pfr_count; /* PF reset count */
|
||||
u16 sw_int_count; /* SW interrupt count */
|
||||
u32 link_down_events;
|
||||
|
||||
struct mutex switch_mutex;
|
||||
u16 lan_vsi; /* our default LAN VSI */
|
||||
|
|
|
|||
|
|
@ -2750,6 +2750,15 @@ static void i40e_diag_test(struct net_device *netdev,
|
|||
netif_info(pf, drv, netdev, "testing failed\n");
|
||||
}
|
||||
|
||||
static void i40e_get_link_ext_stats(struct net_device *netdev,
|
||||
struct ethtool_link_ext_stats *stats)
|
||||
{
|
||||
struct i40e_netdev_priv *np = netdev_priv(netdev);
|
||||
struct i40e_pf *pf = np->vsi->back;
|
||||
|
||||
stats->link_down_events = pf->link_down_events;
|
||||
}
|
||||
|
||||
static void i40e_get_wol(struct net_device *netdev,
|
||||
struct ethtool_wolinfo *wol)
|
||||
{
|
||||
|
|
@ -5810,6 +5819,7 @@ static const struct ethtool_ops i40e_ethtool_ops = {
|
|||
.get_regs = i40e_get_regs,
|
||||
.nway_reset = i40e_nway_reset,
|
||||
.get_link = ethtool_op_get_link,
|
||||
.get_link_ext_stats = i40e_get_link_ext_stats,
|
||||
.get_wol = i40e_get_wol,
|
||||
.set_wol = i40e_set_wol,
|
||||
.set_eeprom = i40e_set_eeprom,
|
||||
|
|
|
|||
|
|
@ -9960,6 +9960,9 @@ static void i40e_link_event(struct i40e_pf *pf)
|
|||
new_link == netif_carrier_ok(vsi->netdev)))
|
||||
return;
|
||||
|
||||
if (!new_link && old_link)
|
||||
pf->link_down_events++;
|
||||
|
||||
i40e_print_link_message(vsi, new_link);
|
||||
|
||||
/* Notify the base of the switch tree connected to
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user