OSDN Git Service

iavf: fix locking of critical sections
authorStefan Assmann <sassmann@kpanic.de>
Tue, 16 Mar 2021 10:01:41 +0000 (11:01 +0100)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Mon, 19 Jul 2021 16:18:30 +0000 (09:18 -0700)
commit226d528512cfac890a1619aea4301f3dd314fe60
tree024b3672b6aeb35607f6d990c3d805161a8dacb5
parent22c8fd71d3a5e6fe584ccc2c1e8760e5baefd5aa
iavf: fix locking of critical sections

To avoid races between iavf_init_task(), iavf_reset_task(),
iavf_watchdog_task(), iavf_adminq_task() as well as the shutdown and
remove functions more locking is required.
The current protection by __IAVF_IN_CRITICAL_TASK is needed in
additional places.

- The reset task performs state transitions, therefore needs locking.
- The adminq task acts on replies from the PF in
  iavf_virtchnl_completion() which may alter the states.
- The init task is not only run during probe but also if a VF gets stuck
  to reinitialize it.
- The shutdown function performs a state transition.
- The remove function performs a state transition and also free's
  resources.

iavf_lock_timeout() is introduced to avoid waiting infinitely
and cause a deadlock. Rather unlock and print a warning.

Signed-off-by: Stefan Assmann <sassmann@kpanic.de>
Tested-by: Konrad Jankowski <konrad0.jankowski@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/iavf/iavf_main.c