aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/intel/ice/ice_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_lib.c')
-rw-r--r--drivers/net/ethernet/intel/ice/ice_lib.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_lib.c b/drivers/net/ethernet/intel/ice/ice_lib.c
index acf3478a3f3b..4b26705a9ab5 100644
--- a/drivers/net/ethernet/intel/ice/ice_lib.c
+++ b/drivers/net/ethernet/intel/ice/ice_lib.c
@@ -1784,8 +1784,11 @@ int ice_vsi_stop_rx_rings(struct ice_vsi *vsi)
1784/** 1784/**
1785 * ice_vsi_stop_tx_rings - Disable Tx rings 1785 * ice_vsi_stop_tx_rings - Disable Tx rings
1786 * @vsi: the VSI being configured 1786 * @vsi: the VSI being configured
1787 * @rst_src: reset source
1788 * @rel_vmvf_num: Relative id of VF/VM
1787 */ 1789 */
1788int ice_vsi_stop_tx_rings(struct ice_vsi *vsi) 1790int ice_vsi_stop_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
1791 u16 rel_vmvf_num)
1789{ 1792{
1790 struct ice_pf *pf = vsi->back; 1793 struct ice_pf *pf = vsi->back;
1791 struct ice_hw *hw = &pf->hw; 1794 struct ice_hw *hw = &pf->hw;
@@ -1837,7 +1840,7 @@ int ice_vsi_stop_tx_rings(struct ice_vsi *vsi)
1837 GLINT_DYN_CTL_SWINT_TRIG_M | GLINT_DYN_CTL_INTENA_MSK_M); 1840 GLINT_DYN_CTL_SWINT_TRIG_M | GLINT_DYN_CTL_INTENA_MSK_M);
1838 } 1841 }
1839 status = ice_dis_vsi_txq(vsi->port_info, vsi->num_txq, q_ids, q_teids, 1842 status = ice_dis_vsi_txq(vsi->port_info, vsi->num_txq, q_ids, q_teids,
1840 NULL); 1843 rst_src, rel_vmvf_num, NULL);
1841 /* if the disable queue command was exercised during an active reset 1844 /* if the disable queue command was exercised during an active reset
1842 * flow, ICE_ERR_RESET_ONGOING is returned. This is not an error as 1845 * flow, ICE_ERR_RESET_ONGOING is returned. This is not an error as
1843 * the reset operation disables queues at the hardware level anyway. 1846 * the reset operation disables queues at the hardware level anyway.