Commit da65bc05 authored by Bart Van Assche's avatar Bart Van Assche Committed by Martin K. Petersen
Browse files

scsi: qlogicfas408: Call scsi_done() directly

Conditional statements are faster than indirect calls. Hence call
scsi_done() directly.

Link: https://lore.kernel.org/r/20211007202923.2174984-68-bvanassche@acm.org


Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent fdcfbd65
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -442,7 +442,7 @@ static void ql_ihandl(void *dev_id)
	 *	If result is CHECK CONDITION done calls qcommand to request
	 *	sense
	 */
	(icmd->scsi_done) (icmd);
	scsi_done(icmd);
}

irqreturn_t qlogicfas408_ihandl(int irq, void *dev_id)
@@ -473,7 +473,6 @@ static int qlogicfas408_queuecommand_lck(struct scsi_cmnd *cmd,
		return 0;
	}

	cmd->scsi_done = done;
	/* wait for the last command's interrupt to finish */
	while (priv->qlcmd != NULL) {
		barrier();