diff options
| author | Ivan Vecera <[email protected]> | 2024-04-27 07:26:04 +0000 |
|---|---|---|
| committer | Tony Nguyen <[email protected]> | 2024-04-30 16:33:01 +0000 |
| commit | 7033ada04e33048c8b33294fecbb0d73f3cd1088 (patch) | |
| tree | 6dd87b35a4a9a32e407f4928c50085a96f8536c0 /drivers/net/ethernet/intel/i40e/i40e_main.c | |
| parent | i40e: Refactor argument of several client notification functions (diff) | |
| download | kernel-7033ada04e33048c8b33294fecbb0d73f3cd1088.tar.gz kernel-7033ada04e33048c8b33294fecbb0d73f3cd1088.zip | |
i40e: Refactor argument of i40e_detect_recover_hung()
Commit 07d44190a389 ("i40e/i40evf: Detect and recover hung queue
scenario") changes i40e_detect_recover_hung() argument type from
i40e_pf* to i40e_vsi* to be shareable by both i40e and i40evf.
Because the i40evf does not exist anymore and the function is
exclusively used by i40e we can revert this change.
Reviewed-by: Michal Schmidt <[email protected]>
Tested-by: Pucha Himasekhar Reddy <[email protected]>
Signed-off-by: Ivan Vecera <[email protected]>
Reviewed-by: Simon Horman <[email protected]>
Signed-off-by: Tony Nguyen <[email protected]>
Diffstat (limited to 'drivers/net/ethernet/intel/i40e/i40e_main.c')
| -rw-r--r-- | drivers/net/ethernet/intel/i40e/i40e_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c index aa874d6ff8c3..4291001d0053 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_main.c +++ b/drivers/net/ethernet/intel/i40e/i40e_main.c @@ -11267,7 +11267,7 @@ static void i40e_service_task(struct work_struct *work) return; if (!test_bit(__I40E_RECOVERY_MODE, pf->state)) { - i40e_detect_recover_hung(pf->vsi[pf->lan_vsi]); + i40e_detect_recover_hung(pf); i40e_sync_filters_subtask(pf); i40e_reset_subtask(pf); i40e_handle_mdd_event(pf); |
