[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20220105202747.1963919-1-haowenchao@huawei.com>
Date: Wed, 5 Jan 2022 15:27:48 -0500
From: Wenchao Hao <haowenchao@...wei.com>
To: Damien Le Moal <damien.lemoal@...nsource.wdc.com>,
<linux-ide@...r.kernel.org>, <linux-kernel@...r.kernel.org>
CC: Zhiqiang Liu <liuzhiqiang26@...wei.com>,
Wenchao Hao <haowenchao@...wei.com>
Subject: [PATCH v2] ata: libata-scsi: Make __ata_scsi_queuecmd() parameters check more clearly
This is just a clean code. Since each branch of "if" state would check
scmd->cmd_len, so move the check of scmd->cmd_len out of "if" state to
simplify input parameters check.
And remove redundant init of xlat_func at hand
The patch do not change origin function logic.
Signed-off-by: Wenchao Hao <haowenchao@...wei.com>
---
drivers/ata/libata-scsi.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c
index 313e9475507b..ab8a2833dfec 100644
--- a/drivers/ata/libata-scsi.c
+++ b/drivers/ata/libata-scsi.c
@@ -4023,16 +4023,15 @@ int __ata_scsi_queuecmd(struct scsi_cmnd *scmd, struct ata_device *dev)
ata_xlat_func_t xlat_func;
int rc = 0;
+ if (unlikely(!scmd->cmd_len))
+ goto bad_cdb_len;
+
if (dev->class == ATA_DEV_ATA || dev->class == ATA_DEV_ZAC) {
- if (unlikely(!scmd->cmd_len || scmd->cmd_len > dev->cdb_len))
+ if (unlikely(scmd->cmd_len > dev->cdb_len))
goto bad_cdb_len;
xlat_func = ata_get_xlat_func(dev, scsi_op);
} else {
- if (unlikely(!scmd->cmd_len))
- goto bad_cdb_len;
-
- xlat_func = NULL;
if (likely((scsi_op != ATA_16) || !atapi_passthru16)) {
/* relay SCSI command to ATAPI device */
int len = COMMAND_SIZE(scsi_op);
--
2.32.0
Powered by blists - more mailing lists