aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/target/target_core_sbc.c
diff options
context:
space:
mode:
authorAndy Grover <agrover@redhat.com>2014-10-01 16:07:02 -0700
committerNicholas Bellinger <nab@linux-iscsi.org>2014-10-02 21:35:53 -0700
commit20959c4b4078847e629eed8918abb52bfe5f559a (patch)
treeeb335cbb7e685a1431bc44d942a426db43e8a16a /drivers/target/target_core_sbc.c
parenttarget: Fix queue full status NULL pointer for SCF_TRANSPORT_TASK_SENSE (diff)
downloadlinux-dev-20959c4b4078847e629eed8918abb52bfe5f559a.tar.xz
linux-dev-20959c4b4078847e629eed8918abb52bfe5f559a.zip
target: Remove unneeded check in sbc_parse_cdb
The check of SCF_SCSI_DATA_CDB seems to be a remnant from before hch's refactoring of this function. There are no places where that flag is set that cmd->execute_cmd isn't also set. Signed-off-by: Andy Grover <agrover@redhat.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/target_core_sbc.c')
-rw-r--r--drivers/target/target_core_sbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/target_core_sbc.c b/drivers/target/target_core_sbc.c
index bd78d9235ac6..ebe62afb957d 100644
--- a/drivers/target/target_core_sbc.c
+++ b/drivers/target/target_core_sbc.c
@@ -948,7 +948,7 @@ sbc_parse_cdb(struct se_cmd *cmd, struct sbc_ops *ops)
}
/* reject any command that we don't have a handler for */
- if (!(cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) && !cmd->execute_cmd)
+ if (!cmd->execute_cmd)
return TCM_UNSUPPORTED_SCSI_OPCODE;
if (cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) {