Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e3effd73 authored by Shannon Nelson's avatar Shannon Nelson Committed by Jeff Kirsher
Browse files

i40e: always print aqtx answer



Sometimes the AQTX answer comes back with no data, but we still want to print
the descriptor that got written back.

Change-ID: I5f734d99b4c95510987413893f0a34626571d474
Signed-off-by: default avatarShannon Nelson <shannon.nelson@intel.com>
Tested-by: default avatarJim Young <jamesx.m.young@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 7d62dac6
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -889,11 +889,9 @@ i40e_status i40e_asq_send_command(struct i40e_hw *hw,
		hw->aq.asq_last_status = (enum i40e_admin_queue_err)retval;
	}

	if (le16_to_cpu(desc->datalen) == buff_size) {
	i40e_debug(hw, I40E_DEBUG_AQ_MESSAGE,
		   "AQTX: desc and buffer writeback:\n");
	i40e_debug_aq(hw, I40E_DEBUG_AQ_COMMAND, (void *)desc, buff);
	}

	/* update the error if time out occurred */
	if ((!cmd_completed) &&
+3 −5
Original line number Diff line number Diff line
@@ -840,11 +840,9 @@ i40e_status i40evf_asq_send_command(struct i40e_hw *hw,
	if (i40e_is_nvm_update_op(desc))
		hw->aq.nvm_busy = true;

	if (le16_to_cpu(desc->datalen) == buff_size) {
	i40e_debug(hw, I40E_DEBUG_AQ_MESSAGE,
		   "AQTX: desc and buffer writeback:\n");
	i40evf_debug_aq(hw, I40E_DEBUG_AQ_COMMAND, (void *)desc, buff);
	}

	/* update the error if time out occurred */
	if ((!cmd_completed) &&