diff mbox series

fixup! ice: fix concurrent reset and removal of VFs

Message ID 20220218202334.822004-1-jacob.e.keller@intel.com
State Accepted
Delegated to: Anthony Nguyen
Headers show
Series fixup! ice: fix concurrent reset and removal of VFs | expand

Commit Message

Jacob Keller Feb. 18, 2022, 8:23 p.m. UTC
One call to ice_vc_reset_vf failed to grab the VF cfg_lock. Add the
missing mutex_lock/unlock to ice_vf_lan_overflow_event.

Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
---
 drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c | 2 ++
 1 file changed, 2 insertions(+)


base-commit: 967260db57d52ff5e97dc07407aeeb014653b969
diff mbox series

Patch

diff --git a/drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c b/drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c
index 353c2a3755d0..1be3cd4b2bef 100644
--- a/drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c
+++ b/drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c
@@ -2150,7 +2150,9 @@  ice_vf_lan_overflow_event(struct ice_pf *pf, struct ice_rq_event_info *event)
 	if (!vf)
 		return;
 
+	mutex_lock(&vf->cfg_lock);
 	ice_vc_reset_vf(vf);
+	mutex_unlock(&vf->cfg_lock);
 }
 
 /**