From: Qi Zhang Date: Tue, 9 Jan 2018 20:30:02 +0000 (-0500) Subject: net/i40e/base: release spinlock before function returns X-Git-Tag: spdx-start~462 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=11c52927ff9907ea7b18991b8eee392b9e294ffa;p=dpdk.git net/i40e/base: release spinlock before function returns Fix a bug that adminq spin lock is not be released before function i40e_nvmupd_command returns. Fixes: 5a2e46a3e405 ("net/i40e/base: refactor NVM update command processing") Cc: stable@dpdk.org Signed-off-by: Qi Zhang Acked-by: Beilei Xing --- diff --git a/drivers/net/i40e/base/i40e_nvm.c b/drivers/net/i40e/base/i40e_nvm.c index a1e78300de..946778ba39 100644 --- a/drivers/net/i40e/base/i40e_nvm.c +++ b/drivers/net/i40e/base/i40e_nvm.c @@ -907,7 +907,11 @@ enum i40e_status_code i40e_nvmupd_command(struct i40e_hw *hw, /* Acquire lock to prevent race condition where adminq_task * can execute after i40e_nvmupd_nvm_read/write but before state - * variables (nvm_wait_opcode, nvm_release_on_done) are updated + * variables (nvm_wait_opcode, nvm_release_on_done) are updated. + * + * During NVMUpdate, it is observed that lock could be held for + * ~5ms for most commands. However lock is held for ~60ms for + * NVMUPD_CSUM_LCB command. */ i40e_acquire_spinlock(&hw->aq.arq_spinlock); switch (hw->nvmupd_state) { @@ -930,7 +934,8 @@ enum i40e_status_code i40e_nvmupd_command(struct i40e_hw *hw, */ if (cmd->offset == 0xffff) { i40e_nvmupd_check_wait_event(hw, hw->nvm_wait_opcode); - return I40E_SUCCESS; + status = I40E_SUCCESS; + goto exit; } status = I40E_ERR_NOT_READY; @@ -945,6 +950,7 @@ enum i40e_status_code i40e_nvmupd_command(struct i40e_hw *hw, *perrno = -ESRCH; break; } +exit: i40e_release_spinlock(&hw->aq.arq_spinlock); return status; }