diff options
| author | 2022-03-24 12:49:07 +0100 | |
|---|---|---|
| committer | 2022-05-05 11:28:35 -0700 | |
| commit | 295819b562fa13e48d0de72eebae7e75dc7c2cc4 (patch) | |
| tree | 5d3a7f02669b1fb0eba3fe42bce651bc5405ff32 /drivers/net/ethernet/intel/ice/ice_idc.c | |
| parent | ice: use min_t() to make code cleaner in ice_gnss (diff) | |
| download | wireguard-linux-295819b562fa13e48d0de72eebae7e75dc7c2cc4.tar.xz wireguard-linux-295819b562fa13e48d0de72eebae7e75dc7c2cc4.zip | |
ice: introduce common helper for retrieving VSI by vsi_num
Both ice_idc.c and ice_virtchnl.c carry their own implementation of a
helper function that is looking for a given VSI based on provided
vsi_num. Their functionality is the same, so let's introduce the common
function in ice.h that both of the mentioned sites will use.
This is a strictly cleanup thing, no functionality is changed.
Reviewed-by: Alexander Lobakin <alexandr.lobakin@intel.com>
Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
Tested-by: Konrad Jankowski <konrad0.jankowski@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_idc.c')
| -rw-r--r-- | drivers/net/ethernet/intel/ice/ice_idc.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_idc.c b/drivers/net/ethernet/intel/ice/ice_idc.c index 25a436d342c2..7e941264ae21 100644 --- a/drivers/net/ethernet/intel/ice/ice_idc.c +++ b/drivers/net/ethernet/intel/ice/ice_idc.c @@ -48,21 +48,6 @@ void ice_send_event_to_aux(struct ice_pf *pf, struct iidc_event *event) } /** - * ice_find_vsi - Find the VSI from VSI ID - * @pf: The PF pointer to search in - * @vsi_num: The VSI ID to search for - */ -static struct ice_vsi *ice_find_vsi(struct ice_pf *pf, u16 vsi_num) -{ - int i; - - ice_for_each_vsi(pf, i) - if (pf->vsi[i] && pf->vsi[i]->vsi_num == vsi_num) - return pf->vsi[i]; - return NULL; -} - -/** * ice_add_rdma_qset - Add Leaf Node for RDMA Qset * @pf: PF struct * @qset: Resource to be allocated |
