提交 3ca2385a 编写于 作者: B Bart Van Assche 提交者: Martin K. Petersen

scsi: ps3rom: Call scsi_done() directly

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

Link: https://lore.kernel.org/r/20211007202923.2174984-63-bvanassche@acm.orgSigned-off-by: NBart Van Assche <bvanassche@acm.org>
Signed-off-by: NMartin K. Petersen <martin.petersen@oracle.com>
上级 7bc195c7
...@@ -209,7 +209,6 @@ static int ps3rom_queuecommand_lck(struct scsi_cmnd *cmd, ...@@ -209,7 +209,6 @@ static int ps3rom_queuecommand_lck(struct scsi_cmnd *cmd,
int res; int res;
priv->curr_cmd = cmd; priv->curr_cmd = cmd;
cmd->scsi_done = done;
opcode = cmd->cmnd[0]; opcode = cmd->cmnd[0];
/* /*
...@@ -237,7 +236,7 @@ static int ps3rom_queuecommand_lck(struct scsi_cmnd *cmd, ...@@ -237,7 +236,7 @@ static int ps3rom_queuecommand_lck(struct scsi_cmnd *cmd,
scsi_build_sense(cmd, 0, ILLEGAL_REQUEST, 0, 0); scsi_build_sense(cmd, 0, ILLEGAL_REQUEST, 0, 0);
cmd->result = res; cmd->result = res;
priv->curr_cmd = NULL; priv->curr_cmd = NULL;
cmd->scsi_done(cmd); scsi_done(cmd);
} }
return 0; return 0;
...@@ -321,7 +320,7 @@ static irqreturn_t ps3rom_interrupt(int irq, void *data) ...@@ -321,7 +320,7 @@ static irqreturn_t ps3rom_interrupt(int irq, void *data)
done: done:
priv->curr_cmd = NULL; priv->curr_cmd = NULL;
cmd->scsi_done(cmd); scsi_done(cmd);
return IRQ_HANDLED; return IRQ_HANDLED;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册