ice: Fix a few null pointer dereference issues
1) When ice_ena_msix_range() fails to reserve vectors, a devm_kfree() warning was seen in the error flow path. So check pf->irq_tracker before use in ice_clear_interrupt_scheme(). 2) In ice_vsi_cfg(), check vsi->netdev before use. 3) In ice_get_link_status, check link_up before use. Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Tony Brelinski <tonyx.brelinski@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:

committed by
Jeff Kirsher

parent
3bcd7fa37f
commit
c7f2c42b80
@@ -1483,7 +1483,7 @@ enum ice_status ice_get_link_status(struct ice_port_info *pi, bool *link_up)
|
|||||||
struct ice_phy_info *phy_info;
|
struct ice_phy_info *phy_info;
|
||||||
enum ice_status status = 0;
|
enum ice_status status = 0;
|
||||||
|
|
||||||
if (!pi)
|
if (!pi || !link_up)
|
||||||
return ICE_ERR_PARAM;
|
return ICE_ERR_PARAM;
|
||||||
|
|
||||||
phy_info = &pi->phy;
|
phy_info = &pi->phy;
|
||||||
|
@@ -3257,8 +3257,10 @@ static void ice_clear_interrupt_scheme(struct ice_pf *pf)
|
|||||||
if (test_bit(ICE_FLAG_MSIX_ENA, pf->flags))
|
if (test_bit(ICE_FLAG_MSIX_ENA, pf->flags))
|
||||||
ice_dis_msix(pf);
|
ice_dis_msix(pf);
|
||||||
|
|
||||||
devm_kfree(&pf->pdev->dev, pf->irq_tracker);
|
if (pf->irq_tracker) {
|
||||||
pf->irq_tracker = NULL;
|
devm_kfree(&pf->pdev->dev, pf->irq_tracker);
|
||||||
|
pf->irq_tracker = NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -4112,11 +4114,12 @@ static int ice_vsi_cfg(struct ice_vsi *vsi)
|
|||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
ice_set_rx_mode(vsi->netdev);
|
if (vsi->netdev) {
|
||||||
|
ice_set_rx_mode(vsi->netdev);
|
||||||
err = ice_restore_vlan(vsi);
|
err = ice_restore_vlan(vsi);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
err = ice_vsi_cfg_txqs(vsi);
|
err = ice_vsi_cfg_txqs(vsi);
|
||||||
if (!err)
|
if (!err)
|
||||||
|
Reference in New Issue
Block a user