|
@@ -1005,16 +1005,19 @@ static int i40e_get_eeprom(struct net_device *netdev,
|
|
|
/* check for NVMUpdate access method */
|
|
|
magic = hw->vendor_id | (hw->device_id << 16);
|
|
|
if (eeprom->magic && eeprom->magic != magic) {
|
|
|
- struct i40e_nvm_access *cmd;
|
|
|
- int errno;
|
|
|
+ struct i40e_nvm_access *cmd = (struct i40e_nvm_access *)eeprom;
|
|
|
+ int errno = 0;
|
|
|
|
|
|
/* make sure it is the right magic for NVMUpdate */
|
|
|
if ((eeprom->magic >> 16) != hw->device_id)
|
|
|
- return -EINVAL;
|
|
|
+ errno = -EINVAL;
|
|
|
+ else if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) ||
|
|
|
+ test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state))
|
|
|
+ errno = -EBUSY;
|
|
|
+ else
|
|
|
+ ret_val = i40e_nvmupd_command(hw, cmd, bytes, &errno);
|
|
|
|
|
|
- cmd = (struct i40e_nvm_access *)eeprom;
|
|
|
- ret_val = i40e_nvmupd_command(hw, cmd, bytes, &errno);
|
|
|
- if (ret_val && (hw->debug_mask & I40E_DEBUG_NVM))
|
|
|
+ if ((errno || ret_val) && (hw->debug_mask & I40E_DEBUG_NVM))
|
|
|
dev_info(&pf->pdev->dev,
|
|
|
"NVMUpdate read failed err=%d status=0x%x errno=%d module=%d offset=0x%x size=%d\n",
|
|
|
ret_val, hw->aq.asq_last_status, errno,
|
|
@@ -1098,27 +1101,25 @@ static int i40e_set_eeprom(struct net_device *netdev,
|
|
|
struct i40e_netdev_priv *np = netdev_priv(netdev);
|
|
|
struct i40e_hw *hw = &np->vsi->back->hw;
|
|
|
struct i40e_pf *pf = np->vsi->back;
|
|
|
- struct i40e_nvm_access *cmd;
|
|
|
+ struct i40e_nvm_access *cmd = (struct i40e_nvm_access *)eeprom;
|
|
|
int ret_val = 0;
|
|
|
- int errno;
|
|
|
+ int errno = 0;
|
|
|
u32 magic;
|
|
|
|
|
|
/* normal ethtool set_eeprom is not supported */
|
|
|
magic = hw->vendor_id | (hw->device_id << 16);
|
|
|
if (eeprom->magic == magic)
|
|
|
- return -EOPNOTSUPP;
|
|
|
-
|
|
|
+ errno = -EOPNOTSUPP;
|
|
|
/* check for NVMUpdate access method */
|
|
|
- if (!eeprom->magic || (eeprom->magic >> 16) != hw->device_id)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) ||
|
|
|
- test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state))
|
|
|
- return -EBUSY;
|
|
|
+ else if (!eeprom->magic || (eeprom->magic >> 16) != hw->device_id)
|
|
|
+ errno = -EINVAL;
|
|
|
+ else if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) ||
|
|
|
+ test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state))
|
|
|
+ errno = -EBUSY;
|
|
|
+ else
|
|
|
+ ret_val = i40e_nvmupd_command(hw, cmd, bytes, &errno);
|
|
|
|
|
|
- cmd = (struct i40e_nvm_access *)eeprom;
|
|
|
- ret_val = i40e_nvmupd_command(hw, cmd, bytes, &errno);
|
|
|
- if (ret_val && (hw->debug_mask & I40E_DEBUG_NVM))
|
|
|
+ if ((errno || ret_val) && (hw->debug_mask & I40E_DEBUG_NVM))
|
|
|
dev_info(&pf->pdev->dev,
|
|
|
"NVMUpdate write failed err=%d status=0x%x errno=%d module=%d offset=0x%x size=%d\n",
|
|
|
ret_val, hw->aq.asq_last_status, errno,
|