@@ -363,17 +363,13 @@ u16 nvmet_bdev_flush(struct nvmet_req *req)
static u16 nvmet_bdev_discard_range(struct nvmet_req *req,
struct nvme_dsm_range *range, struct bio **bio)
{
- struct nvmet_ns *ns = req->ns;
- int ret;
+ sector_t sector = nvmet_lba_to_sect(req->ns, range->slba);
+ sector_t nr_sects = le32_to_cpu(range->nlb) <<
+ (req->ns->blksize_shift - SECTOR_SHIFT);
- ret = __blkdev_issue_discard(ns->bdev,
- nvmet_lba_to_sect(ns, range->slba),
- le32_to_cpu(range->nlb) << (ns->blksize_shift - 9),
- GFP_KERNEL, bio);
- if (ret && ret != -EOPNOTSUPP) {
- req->error_slba = le64_to_cpu(range->slba);
- return errno_to_nvme_status(req, ret);
- }
+ while (blk_next_discard_bio(req->ns->bdev, bio, §or, &nr_sects,
+ GFP_KERNEL))
+ ;
return NVME_SC_SUCCESS;
}
This fixes fatal signals getting into the way and corrupting the bio chain and removes the need to handle synchronous errors. Signed-off-by: Christoph Hellwig <hch@lst.de> --- drivers/nvme/target/io-cmd-bdev.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-)