2019-02-18 17:36:11 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-06-21 23:04:20 +07:00
|
|
|
/*
|
|
|
|
* NVMe I/O command implementation.
|
|
|
|
* Copyright (c) 2015-2016 HGST, a Western Digital Company.
|
|
|
|
*/
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
#include <linux/blkdev.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include "nvmet.h"
|
|
|
|
|
2019-06-28 23:53:30 +07:00
|
|
|
void nvmet_bdev_set_limits(struct block_device *bdev, struct nvme_id_ns *id)
|
|
|
|
{
|
|
|
|
const struct queue_limits *ql = &bdev_get_queue(bdev)->limits;
|
2019-09-18 01:52:00 +07:00
|
|
|
/* Number of logical blocks per physical block. */
|
|
|
|
const u32 lpp = ql->physical_block_size / ql->logical_block_size;
|
|
|
|
/* Logical blocks per physical block, 0's based. */
|
|
|
|
const __le16 lpp0b = to0based(lpp);
|
2019-06-28 23:53:30 +07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* For NVMe 1.2 and later, bit 1 indicates that the fields NAWUN,
|
|
|
|
* NAWUPF, and NACWU are defined for this namespace and should be
|
|
|
|
* used by the host for this namespace instead of the AWUN, AWUPF,
|
|
|
|
* and ACWU fields in the Identify Controller data structure. If
|
|
|
|
* any of these fields are zero that means that the corresponding
|
|
|
|
* field from the identify controller data structure should be used.
|
|
|
|
*/
|
|
|
|
id->nsfeat |= 1 << 1;
|
2019-09-18 01:52:00 +07:00
|
|
|
id->nawun = lpp0b;
|
|
|
|
id->nawupf = lpp0b;
|
|
|
|
id->nacwu = lpp0b;
|
2019-06-28 23:53:30 +07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Bit 4 indicates that the fields NPWG, NPWA, NPDG, NPDA, and
|
|
|
|
* NOWS are defined for this namespace and should be used by
|
|
|
|
* the host for I/O optimization.
|
|
|
|
*/
|
|
|
|
id->nsfeat |= 1 << 4;
|
|
|
|
/* NPWG = Namespace Preferred Write Granularity. 0's based */
|
2019-09-18 01:52:00 +07:00
|
|
|
id->npwg = lpp0b;
|
2019-06-28 23:53:30 +07:00
|
|
|
/* NPWA = Namespace Preferred Write Alignment. 0's based */
|
|
|
|
id->npwa = id->npwg;
|
|
|
|
/* NPDG = Namespace Preferred Deallocate Granularity. 0's based */
|
|
|
|
id->npdg = to0based(ql->discard_granularity / ql->logical_block_size);
|
|
|
|
/* NPDG = Namespace Preferred Deallocate Alignment */
|
|
|
|
id->npda = id->npdg;
|
|
|
|
/* NOWS = Namespace Optimal Write Size */
|
|
|
|
id->nows = to0based(ql->io_opt / ql->logical_block_size);
|
|
|
|
}
|
|
|
|
|
2018-05-23 11:34:39 +07:00
|
|
|
int nvmet_bdev_ns_enable(struct nvmet_ns *ns)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ns->bdev = blkdev_get_by_path(ns->device_path,
|
|
|
|
FMODE_READ | FMODE_WRITE, NULL);
|
|
|
|
if (IS_ERR(ns->bdev)) {
|
|
|
|
ret = PTR_ERR(ns->bdev);
|
|
|
|
if (ret != -ENOTBLK) {
|
|
|
|
pr_err("failed to open block device %s: (%ld)\n",
|
|
|
|
ns->device_path, PTR_ERR(ns->bdev));
|
|
|
|
}
|
|
|
|
ns->bdev = NULL;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ns->size = i_size_read(ns->bdev->bd_inode);
|
|
|
|
ns->blksize_shift = blksize_bits(bdev_logical_block_size(ns->bdev));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nvmet_bdev_ns_disable(struct nvmet_ns *ns)
|
|
|
|
{
|
|
|
|
if (ns->bdev) {
|
|
|
|
blkdev_put(ns->bdev, FMODE_WRITE | FMODE_READ);
|
|
|
|
ns->bdev = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-13 06:11:42 +07:00
|
|
|
static u16 blk_to_nvme_status(struct nvmet_req *req, blk_status_t blk_sts)
|
|
|
|
{
|
|
|
|
u16 status = NVME_SC_SUCCESS;
|
|
|
|
|
|
|
|
if (likely(blk_sts == BLK_STS_OK))
|
|
|
|
return status;
|
|
|
|
/*
|
|
|
|
* Right now there exists M : 1 mapping between block layer error
|
|
|
|
* to the NVMe status code (see nvme_error_status()). For consistency,
|
|
|
|
* when we reverse map we use most appropriate NVMe Status code from
|
|
|
|
* the group of the NVMe staus codes used in the nvme_error_status().
|
|
|
|
*/
|
|
|
|
switch (blk_sts) {
|
|
|
|
case BLK_STS_NOSPC:
|
|
|
|
status = NVME_SC_CAP_EXCEEDED | NVME_SC_DNR;
|
|
|
|
req->error_loc = offsetof(struct nvme_rw_command, length);
|
|
|
|
break;
|
|
|
|
case BLK_STS_TARGET:
|
|
|
|
status = NVME_SC_LBA_RANGE | NVME_SC_DNR;
|
|
|
|
req->error_loc = offsetof(struct nvme_rw_command, slba);
|
|
|
|
break;
|
|
|
|
case BLK_STS_NOTSUPP:
|
|
|
|
req->error_loc = offsetof(struct nvme_common_command, opcode);
|
|
|
|
switch (req->cmd->common.opcode) {
|
|
|
|
case nvme_cmd_dsm:
|
|
|
|
case nvme_cmd_write_zeroes:
|
|
|
|
status = NVME_SC_ONCS_NOT_SUPPORTED | NVME_SC_DNR;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
status = NVME_SC_INVALID_OPCODE | NVME_SC_DNR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BLK_STS_MEDIUM:
|
|
|
|
status = NVME_SC_ACCESS_DENIED;
|
|
|
|
req->error_loc = offsetof(struct nvme_rw_command, nsid);
|
|
|
|
break;
|
|
|
|
case BLK_STS_IOERR:
|
|
|
|
/* fallthru */
|
|
|
|
default:
|
|
|
|
status = NVME_SC_INTERNAL | NVME_SC_DNR;
|
|
|
|
req->error_loc = offsetof(struct nvme_common_command, opcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (req->cmd->common.opcode) {
|
|
|
|
case nvme_cmd_read:
|
|
|
|
case nvme_cmd_write:
|
|
|
|
req->error_slba = le64_to_cpu(req->cmd->rw.slba);
|
|
|
|
break;
|
|
|
|
case nvme_cmd_write_zeroes:
|
|
|
|
req->error_slba =
|
|
|
|
le64_to_cpu(req->cmd->write_zeroes.slba);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
req->error_slba = 0;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2016-06-21 23:04:20 +07:00
|
|
|
static void nvmet_bio_done(struct bio *bio)
|
|
|
|
{
|
|
|
|
struct nvmet_req *req = bio->bi_private;
|
|
|
|
|
2018-12-13 06:11:42 +07:00
|
|
|
nvmet_req_complete(req, blk_to_nvme_status(req, bio->bi_status));
|
2018-05-23 11:34:39 +07:00
|
|
|
if (bio != &req->b.inline_bio)
|
2016-06-21 23:04:20 +07:00
|
|
|
bio_put(bio);
|
|
|
|
}
|
|
|
|
|
2018-05-23 11:34:39 +07:00
|
|
|
static void nvmet_bdev_execute_rw(struct nvmet_req *req)
|
2016-06-21 23:04:20 +07:00
|
|
|
{
|
|
|
|
int sg_cnt = req->sg_cnt;
|
2018-09-29 05:40:43 +07:00
|
|
|
struct bio *bio;
|
2016-06-21 23:04:20 +07:00
|
|
|
struct scatterlist *sg;
|
nvmet: add plugging for read/write when ns is bdev
With reference to the following issue reported on the mailing list :-
http://lists.infradead.org/pipermail/linux-nvme/2019-October/027604.html
this patch adds plugging for the bdev-ns under nvmet_bdev_execute_rw().
We can see the following performance improvement in random write
workload I/Os with the setup described in the link when device_path
configured as /dev/md0.
Without this patch :-
write: IOPS=40.8k, BW=159MiB/s (167MB/s)(4777MiB/30002msec)
write: IOPS=41.2k, BW=161MiB/s (169MB/s)(4831MiB/30011msec)
slat (usec): min=8, max=10823, avg=15.64, stdev=16.85
slat (usec): min=8, max=401, avg=15.40, stdev= 9.56
clat (usec): min=54, max=2492, avg=759.07, stdev=172.62
clat (usec): min=56, max=1997, avg=768.06, stdev=178.72
With this patch :-
write: IOPS=123k, BW=480MiB/s (504MB/s)(14.1GiB/30011msec)
write: IOPS=123k, BW=481MiB/s (504MB/s)(14.1GiB/30002msec)
slat (usec): min=8, max=9941, avg=13.31, stdev= 8.04
slat (usec): min=8, max=289, avg=13.31, stdev= 3.37
clat (usec): min=43, max=17635, avg=245.46, stdev=171.23
clat (usec): min=44, max=17751, avg=245.25, stdev=183.14
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
2019-10-29 01:23:26 +07:00
|
|
|
struct blk_plug plug;
|
2016-06-21 23:04:20 +07:00
|
|
|
sector_t sector;
|
2019-10-29 14:12:23 +07:00
|
|
|
int op, i;
|
2016-06-21 23:04:20 +07:00
|
|
|
|
2019-10-23 23:35:44 +07:00
|
|
|
if (!nvmet_check_data_len(req, nvmet_rw_len(req)))
|
|
|
|
return;
|
|
|
|
|
2016-06-21 23:04:20 +07:00
|
|
|
if (!req->sg_cnt) {
|
|
|
|
nvmet_req_complete(req, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (req->cmd->rw.opcode == nvme_cmd_write) {
|
2019-10-29 14:12:23 +07:00
|
|
|
op = REQ_OP_WRITE | REQ_SYNC | REQ_IDLE;
|
2016-06-21 23:04:20 +07:00
|
|
|
if (req->cmd->rw.control & cpu_to_le16(NVME_RW_FUA))
|
2019-10-29 14:12:23 +07:00
|
|
|
op |= REQ_FUA;
|
2016-06-21 23:04:20 +07:00
|
|
|
} else {
|
|
|
|
op = REQ_OP_READ;
|
|
|
|
}
|
|
|
|
|
2018-10-05 04:27:47 +07:00
|
|
|
if (is_pci_p2pdma_page(sg_page(req->sg)))
|
2019-10-29 14:12:23 +07:00
|
|
|
op |= REQ_NOMERGE;
|
2018-10-05 04:27:47 +07:00
|
|
|
|
2016-06-21 23:04:20 +07:00
|
|
|
sector = le64_to_cpu(req->cmd->rw.slba);
|
|
|
|
sector <<= (req->ns->blksize_shift - 9);
|
|
|
|
|
2019-10-23 23:35:44 +07:00
|
|
|
if (req->transfer_len <= NVMET_MAX_INLINE_DATA_LEN) {
|
2018-09-29 05:40:43 +07:00
|
|
|
bio = &req->b.inline_bio;
|
|
|
|
bio_init(bio, req->inline_bvec, ARRAY_SIZE(req->inline_bvec));
|
|
|
|
} else {
|
|
|
|
bio = bio_alloc(GFP_KERNEL, min(sg_cnt, BIO_MAX_PAGES));
|
|
|
|
}
|
2017-08-24 00:10:32 +07:00
|
|
|
bio_set_dev(bio, req->ns->bdev);
|
2016-06-21 23:04:20 +07:00
|
|
|
bio->bi_iter.bi_sector = sector;
|
|
|
|
bio->bi_private = req;
|
|
|
|
bio->bi_end_io = nvmet_bio_done;
|
2019-10-29 14:12:23 +07:00
|
|
|
bio->bi_opf = op;
|
2016-06-21 23:04:20 +07:00
|
|
|
|
nvmet: add plugging for read/write when ns is bdev
With reference to the following issue reported on the mailing list :-
http://lists.infradead.org/pipermail/linux-nvme/2019-October/027604.html
this patch adds plugging for the bdev-ns under nvmet_bdev_execute_rw().
We can see the following performance improvement in random write
workload I/Os with the setup described in the link when device_path
configured as /dev/md0.
Without this patch :-
write: IOPS=40.8k, BW=159MiB/s (167MB/s)(4777MiB/30002msec)
write: IOPS=41.2k, BW=161MiB/s (169MB/s)(4831MiB/30011msec)
slat (usec): min=8, max=10823, avg=15.64, stdev=16.85
slat (usec): min=8, max=401, avg=15.40, stdev= 9.56
clat (usec): min=54, max=2492, avg=759.07, stdev=172.62
clat (usec): min=56, max=1997, avg=768.06, stdev=178.72
With this patch :-
write: IOPS=123k, BW=480MiB/s (504MB/s)(14.1GiB/30011msec)
write: IOPS=123k, BW=481MiB/s (504MB/s)(14.1GiB/30002msec)
slat (usec): min=8, max=9941, avg=13.31, stdev= 8.04
slat (usec): min=8, max=289, avg=13.31, stdev= 3.37
clat (usec): min=43, max=17635, avg=245.46, stdev=171.23
clat (usec): min=44, max=17751, avg=245.25, stdev=183.14
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
2019-10-29 01:23:26 +07:00
|
|
|
blk_start_plug(&plug);
|
2016-06-21 23:04:20 +07:00
|
|
|
for_each_sg(req->sg, sg, req->sg_cnt, i) {
|
|
|
|
while (bio_add_page(bio, sg_page(sg), sg->length, sg->offset)
|
|
|
|
!= sg->length) {
|
|
|
|
struct bio *prev = bio;
|
|
|
|
|
|
|
|
bio = bio_alloc(GFP_KERNEL, min(sg_cnt, BIO_MAX_PAGES));
|
2017-08-24 00:10:32 +07:00
|
|
|
bio_set_dev(bio, req->ns->bdev);
|
2016-06-21 23:04:20 +07:00
|
|
|
bio->bi_iter.bi_sector = sector;
|
2019-10-29 14:12:23 +07:00
|
|
|
bio->bi_opf = op;
|
2016-06-21 23:04:20 +07:00
|
|
|
|
|
|
|
bio_chain(bio, prev);
|
2017-07-10 21:24:02 +07:00
|
|
|
submit_bio(prev);
|
2016-06-21 23:04:20 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
sector += sg->length >> 9;
|
|
|
|
sg_cnt--;
|
|
|
|
}
|
|
|
|
|
2018-12-13 14:01:54 +07:00
|
|
|
submit_bio(bio);
|
nvmet: add plugging for read/write when ns is bdev
With reference to the following issue reported on the mailing list :-
http://lists.infradead.org/pipermail/linux-nvme/2019-October/027604.html
this patch adds plugging for the bdev-ns under nvmet_bdev_execute_rw().
We can see the following performance improvement in random write
workload I/Os with the setup described in the link when device_path
configured as /dev/md0.
Without this patch :-
write: IOPS=40.8k, BW=159MiB/s (167MB/s)(4777MiB/30002msec)
write: IOPS=41.2k, BW=161MiB/s (169MB/s)(4831MiB/30011msec)
slat (usec): min=8, max=10823, avg=15.64, stdev=16.85
slat (usec): min=8, max=401, avg=15.40, stdev= 9.56
clat (usec): min=54, max=2492, avg=759.07, stdev=172.62
clat (usec): min=56, max=1997, avg=768.06, stdev=178.72
With this patch :-
write: IOPS=123k, BW=480MiB/s (504MB/s)(14.1GiB/30011msec)
write: IOPS=123k, BW=481MiB/s (504MB/s)(14.1GiB/30002msec)
slat (usec): min=8, max=9941, avg=13.31, stdev= 8.04
slat (usec): min=8, max=289, avg=13.31, stdev= 3.37
clat (usec): min=43, max=17635, avg=245.46, stdev=171.23
clat (usec): min=44, max=17751, avg=245.25, stdev=183.14
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
2019-10-29 01:23:26 +07:00
|
|
|
blk_finish_plug(&plug);
|
2016-06-21 23:04:20 +07:00
|
|
|
}
|
|
|
|
|
2018-05-23 11:34:39 +07:00
|
|
|
static void nvmet_bdev_execute_flush(struct nvmet_req *req)
|
2016-06-21 23:04:20 +07:00
|
|
|
{
|
2018-05-23 11:34:39 +07:00
|
|
|
struct bio *bio = &req->b.inline_bio;
|
2016-06-21 23:04:20 +07:00
|
|
|
|
2019-10-23 23:35:44 +07:00
|
|
|
if (!nvmet_check_data_len(req, 0))
|
|
|
|
return;
|
|
|
|
|
2017-11-09 20:29:27 +07:00
|
|
|
bio_init(bio, req->inline_bvec, ARRAY_SIZE(req->inline_bvec));
|
2017-08-24 00:10:32 +07:00
|
|
|
bio_set_dev(bio, req->ns->bdev);
|
2016-06-21 23:04:20 +07:00
|
|
|
bio->bi_private = req;
|
|
|
|
bio->bi_end_io = nvmet_bio_done;
|
2016-11-01 20:40:10 +07:00
|
|
|
bio->bi_opf = REQ_OP_WRITE | REQ_PREFLUSH;
|
2016-06-21 23:04:20 +07:00
|
|
|
|
|
|
|
submit_bio(bio);
|
|
|
|
}
|
|
|
|
|
2018-08-08 13:01:07 +07:00
|
|
|
u16 nvmet_bdev_flush(struct nvmet_req *req)
|
|
|
|
{
|
|
|
|
if (blkdev_issue_flush(req->ns->bdev, GFP_KERNEL, NULL))
|
|
|
|
return NVME_SC_INTERNAL | NVME_SC_DNR;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-13 06:11:42 +07:00
|
|
|
static u16 nvmet_bdev_discard_range(struct nvmet_req *req,
|
2016-06-21 23:04:20 +07:00
|
|
|
struct nvme_dsm_range *range, struct bio **bio)
|
|
|
|
{
|
2018-12-13 06:11:42 +07:00
|
|
|
struct nvmet_ns *ns = req->ns;
|
2018-01-30 17:07:01 +07:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = __blkdev_issue_discard(ns->bdev,
|
2016-06-21 23:04:20 +07:00
|
|
|
le64_to_cpu(range->slba) << (ns->blksize_shift - 9),
|
|
|
|
le32_to_cpu(range->nlb) << (ns->blksize_shift - 9),
|
2018-01-30 17:07:01 +07:00
|
|
|
GFP_KERNEL, 0, bio);
|
2019-03-14 00:55:09 +07:00
|
|
|
if (ret && ret != -EOPNOTSUPP) {
|
2018-12-13 06:11:42 +07:00
|
|
|
req->error_slba = le64_to_cpu(range->slba);
|
2019-03-13 00:05:10 +07:00
|
|
|
return errno_to_nvme_status(req, ret);
|
2019-03-14 00:55:09 +07:00
|
|
|
}
|
|
|
|
return NVME_SC_SUCCESS;
|
2016-06-21 23:04:20 +07:00
|
|
|
}
|
|
|
|
|
2018-05-23 11:34:39 +07:00
|
|
|
static void nvmet_bdev_execute_discard(struct nvmet_req *req)
|
2016-06-21 23:04:20 +07:00
|
|
|
{
|
|
|
|
struct nvme_dsm_range range;
|
|
|
|
struct bio *bio = NULL;
|
|
|
|
int i;
|
|
|
|
u16 status;
|
|
|
|
|
|
|
|
for (i = 0; i <= le32_to_cpu(req->cmd->dsm.nr); i++) {
|
|
|
|
status = nvmet_copy_from_sgl(req, i * sizeof(range), &range,
|
|
|
|
sizeof(range));
|
|
|
|
if (status)
|
|
|
|
break;
|
|
|
|
|
2018-12-13 06:11:42 +07:00
|
|
|
status = nvmet_bdev_discard_range(req, &range, &bio);
|
2016-06-21 23:04:20 +07:00
|
|
|
if (status)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bio) {
|
|
|
|
bio->bi_private = req;
|
|
|
|
bio->bi_end_io = nvmet_bio_done;
|
2019-10-13 23:57:32 +07:00
|
|
|
if (status)
|
|
|
|
bio_io_error(bio);
|
|
|
|
else
|
2016-06-21 23:04:20 +07:00
|
|
|
submit_bio(bio);
|
|
|
|
} else {
|
|
|
|
nvmet_req_complete(req, status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-23 11:34:39 +07:00
|
|
|
static void nvmet_bdev_execute_dsm(struct nvmet_req *req)
|
2016-06-21 23:04:20 +07:00
|
|
|
{
|
2020-01-27 14:23:28 +07:00
|
|
|
if (!nvmet_check_data_len_lte(req, nvmet_dsm_len(req)))
|
2019-10-23 23:35:44 +07:00
|
|
|
return;
|
|
|
|
|
2016-06-21 23:04:20 +07:00
|
|
|
switch (le32_to_cpu(req->cmd->dsm.attributes)) {
|
|
|
|
case NVME_DSMGMT_AD:
|
2018-05-23 11:34:39 +07:00
|
|
|
nvmet_bdev_execute_discard(req);
|
2016-06-21 23:04:20 +07:00
|
|
|
return;
|
|
|
|
case NVME_DSMGMT_IDR:
|
|
|
|
case NVME_DSMGMT_IDW:
|
|
|
|
default:
|
|
|
|
/* Not supported yet */
|
|
|
|
nvmet_req_complete(req, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-23 11:34:39 +07:00
|
|
|
static void nvmet_bdev_execute_write_zeroes(struct nvmet_req *req)
|
2016-12-01 03:29:02 +07:00
|
|
|
{
|
|
|
|
struct nvme_write_zeroes_cmd *write_zeroes = &req->cmd->write_zeroes;
|
|
|
|
struct bio *bio = NULL;
|
|
|
|
sector_t sector;
|
|
|
|
sector_t nr_sector;
|
2018-12-13 06:11:42 +07:00
|
|
|
int ret;
|
2016-12-01 03:29:02 +07:00
|
|
|
|
2019-10-23 23:35:44 +07:00
|
|
|
if (!nvmet_check_data_len(req, 0))
|
|
|
|
return;
|
|
|
|
|
2016-12-01 03:29:02 +07:00
|
|
|
sector = le64_to_cpu(write_zeroes->slba) <<
|
|
|
|
(req->ns->blksize_shift - 9);
|
2018-04-12 22:16:11 +07:00
|
|
|
nr_sector = (((sector_t)le16_to_cpu(write_zeroes->length) + 1) <<
|
|
|
|
(req->ns->blksize_shift - 9));
|
2016-12-01 03:29:02 +07:00
|
|
|
|
2018-12-13 06:11:42 +07:00
|
|
|
ret = __blkdev_issue_zeroout(req->ns->bdev, sector, nr_sector,
|
|
|
|
GFP_KERNEL, &bio, 0);
|
2016-12-01 03:29:02 +07:00
|
|
|
if (bio) {
|
|
|
|
bio->bi_private = req;
|
|
|
|
bio->bi_end_io = nvmet_bio_done;
|
|
|
|
submit_bio(bio);
|
|
|
|
} else {
|
2019-03-13 00:05:10 +07:00
|
|
|
nvmet_req_complete(req, errno_to_nvme_status(req, ret));
|
2016-12-01 03:29:02 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-23 11:34:39 +07:00
|
|
|
u16 nvmet_bdev_parse_io_cmd(struct nvmet_req *req)
|
2016-06-21 23:04:20 +07:00
|
|
|
{
|
|
|
|
struct nvme_command *cmd = req->cmd;
|
|
|
|
|
|
|
|
switch (cmd->common.opcode) {
|
|
|
|
case nvme_cmd_read:
|
|
|
|
case nvme_cmd_write:
|
2018-05-23 11:34:39 +07:00
|
|
|
req->execute = nvmet_bdev_execute_rw;
|
2016-06-21 23:04:20 +07:00
|
|
|
return 0;
|
|
|
|
case nvme_cmd_flush:
|
2018-05-23 11:34:39 +07:00
|
|
|
req->execute = nvmet_bdev_execute_flush;
|
2016-06-21 23:04:20 +07:00
|
|
|
return 0;
|
|
|
|
case nvme_cmd_dsm:
|
2018-05-23 11:34:39 +07:00
|
|
|
req->execute = nvmet_bdev_execute_dsm;
|
2016-06-21 23:04:20 +07:00
|
|
|
return 0;
|
2016-12-01 03:29:02 +07:00
|
|
|
case nvme_cmd_write_zeroes:
|
2018-05-23 11:34:39 +07:00
|
|
|
req->execute = nvmet_bdev_execute_write_zeroes;
|
2016-12-01 03:29:02 +07:00
|
|
|
return 0;
|
2016-06-21 23:04:20 +07:00
|
|
|
default:
|
2017-02-28 12:21:33 +07:00
|
|
|
pr_err("unhandled cmd %d on qid %d\n", cmd->common.opcode,
|
|
|
|
req->sq->qid);
|
2018-12-13 06:11:42 +07:00
|
|
|
req->error_loc = offsetof(struct nvme_common_command, opcode);
|
2016-06-21 23:04:20 +07:00
|
|
|
return NVME_SC_INVALID_OPCODE | NVME_SC_DNR;
|
|
|
|
}
|
|
|
|
}
|