diff options
| author | Przemek Kitszel <[email protected]> | 2023-10-19 17:32:19 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2023-10-20 11:53:05 +0000 |
| commit | 31642d2854e2b63c807ec6b6b3ea54bbdcbdc9b9 (patch) | |
| tree | fbbd9072b2dd29bb7ccf0d187cb787229644e7a0 /drivers/net/ethernet/intel/ice/ice_vf_lib.c | |
| parent | ice: add drop rule matching on not active lport (diff) | |
| download | kernel-31642d2854e2b63c807ec6b6b3ea54bbdcbdc9b9.tar.gz kernel-31642d2854e2b63c807ec6b6b3ea54bbdcbdc9b9.zip | |
ice: store VF's pci_dev ptr in ice_vf
Extend struct ice_vf by vfdev.
Calculation of vfdev falls more nicely into ice_create_vf_entries().
Caching of vfdev enables simplification of ice_restore_all_vfs_msi_state().
Reviewed-by: Jesse Brandeburg <[email protected]>
Reviewed-by: Jacob Keller <[email protected]>
Signed-off-by: Przemek Kitszel <[email protected]>
Co-developed-by: Mateusz Polchlopek <[email protected]>
Signed-off-by: Mateusz Polchlopek <[email protected]>
Tested-by: Rafal Romanowski <[email protected]>
Reviewed-by: Simon Horman <[email protected]>
Signed-off-by: Jacob Keller <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_vf_lib.c')
| -rw-r--r-- | drivers/net/ethernet/intel/ice/ice_vf_lib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_vf_lib.c b/drivers/net/ethernet/intel/ice/ice_vf_lib.c index 24e4f4d897b6..aca1f2ea5034 100644 --- a/drivers/net/ethernet/intel/ice/ice_vf_lib.c +++ b/drivers/net/ethernet/intel/ice/ice_vf_lib.c @@ -56,6 +56,8 @@ static void ice_release_vf(struct kref *ref) { struct ice_vf *vf = container_of(ref, struct ice_vf, refcnt); + pci_dev_put(vf->vfdev); + vf->vf_ops->free(vf); } |
