diff options
author | Christoph Hellwig <hch@lst.de> | 2017-01-28 09:32:49 +0100 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2017-01-30 08:33:51 -0700 |
commit | 1a7347c7dba9c88f47d1b81622917794b2e2ade3 (patch) | |
tree | bf86442027b711fa51a2c95665965dfc99c01be5 /drivers/nvme | |
parent | f605208e01f5b8ee7b44f3624ec8807cfe85ea7e (diff) | |
download | linux-1a7347c7dba9c88f47d1b81622917794b2e2ade3.tar.gz linux-1a7347c7dba9c88f47d1b81622917794b2e2ade3.tar.bz2 linux-1a7347c7dba9c88f47d1b81622917794b2e2ade3.zip |
nvme/scsi: don't rely on BLK_MAX_CDB
The NVMe SCSI emulation doesn't use BLOCK_PC requests, so BLK_MAX_CDB
doesn't have a meaning for it. Instead opencode the value of 16
and refactor the code a bit so that related checks are next to each
other and we only need to use the value in one place.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/scsi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/nvme/host/scsi.c b/drivers/nvme/host/scsi.c index 0f0fcea9a2c1..f49ae2758bb7 100644 --- a/drivers/nvme/host/scsi.c +++ b/drivers/nvme/host/scsi.c @@ -2348,12 +2348,14 @@ static int nvme_trans_unmap(struct nvme_ns *ns, struct sg_io_hdr *hdr, static int nvme_scsi_translate(struct nvme_ns *ns, struct sg_io_hdr *hdr) { - u8 cmd[BLK_MAX_CDB]; + u8 cmd[16]; int retcode; unsigned int opcode; if (hdr->cmdp == NULL) return -EMSGSIZE; + if (hdr->cmd_len > sizeof(cmd)) + return -EINVAL; if (copy_from_user(cmd, hdr->cmdp, hdr->cmd_len)) return -EFAULT; @@ -2452,8 +2454,6 @@ int nvme_sg_io(struct nvme_ns *ns, struct sg_io_hdr __user *u_hdr) return -EFAULT; if (hdr.interface_id != 'S') return -EINVAL; - if (hdr.cmd_len > BLK_MAX_CDB) - return -EINVAL; /* * A positive return code means a NVMe status, which has been |