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

Commit fd45160c authored by Kalesh AP's avatar Kalesh AP Committed by David S. Miller
Browse files

be2net: return -ETIMEDOUT when a FW-cmd times out



When the FW stops responding with completions, return -ETIMEDOUT error
(instead of -1) to the stack.
Signed-off-by: default avatarKalesh AP <kalesh.purayil@emulex.com>
Signed-off-by: default avatarSathya Perla <sathya.perla@emulex.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 56ace3a0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2224,7 +2224,7 @@ int lancer_cmd_write_object(struct be_adapter *adapter, struct be_dma_mem *cmd,

	if (!wait_for_completion_timeout(&adapter->et_cmd_compl,
					 msecs_to_jiffies(60000)))
		status = -1;
		status = -ETIMEDOUT;
	else
		status = adapter->flash_status;

@@ -2320,7 +2320,7 @@ int be_cmd_write_flashrom(struct be_adapter *adapter, struct be_dma_mem *cmd,

	if (!wait_for_completion_timeout(&adapter->et_cmd_compl,
					 msecs_to_jiffies(40000)))
		status = -1;
		status = -ETIMEDOUT;
	else
		status = adapter->flash_status;