mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-11 00:08:50 +00:00
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: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
fdcfbd6517
commit
da65bc05cf
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user