mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-27 17:59:37 -04:00
ionic: Fix check in ionic_get_link_ext_stats
The current check will fail if SR-IOV is not initialized for the
physical function; this is because is_physfn is 0 if sriov_init() isn't
run or fails. Change the check that prevents getting the link down count
to use is_virtfn instead so that VFs don't get this functionality, which
was the original intent.
Fixes: 132b4ebfa0 ("ionic: add support for ethtool extended stat link_down_count")
Signed-off-by: Brett Creeley <brett.creeley@amd.com>
Signed-off-by: Eric Joyner <eric.joyner@amd.com>
Link: https://patch.msgid.link/20260614205303.48088-2-eric.joyner@amd.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
1959005463
commit
7678e69079
@@ -116,8 +116,15 @@ static void ionic_get_link_ext_stats(struct net_device *netdev,
|
||||
{
|
||||
struct ionic_lif *lif = netdev_priv(netdev);
|
||||
|
||||
if (lif->ionic->pdev->is_physfn)
|
||||
stats->link_down_events = lif->link_down_count;
|
||||
if (lif->ionic->pdev->is_virtfn)
|
||||
return;
|
||||
|
||||
if (!lif->ionic->idev.port_info) {
|
||||
netdev_err_once(netdev, "port_info not initialized\n");
|
||||
return;
|
||||
}
|
||||
|
||||
stats->link_down_events = lif->link_down_count;
|
||||
}
|
||||
|
||||
static int ionic_get_link_ksettings(struct net_device *netdev,
|
||||
|
||||
Reference in New Issue
Block a user