Skip to content

Commit cdb98c2

Browse files
committed
Revert "nvme: add support for the Write Zeroes command"
This reverts commit 6d31e3b. This causes bootup problems for me both on my laptop and my desktop. What they have in common is that they have NVMe disks with dm-crypt, but it's not the same controller, so it's not controller-specific. Jens does not see it on his machine (also NVMe), so it's presumably something that triggers just on bootup. Possibly related to dm-crypt and the fact that I mark my luks volume with "allow-discards" in /etc/crypttab. It's 100% repeatable for me, which made it fairly straightforward to bisect the problem to this commit. Small mercies. So we don't know what the reason is yet, but the revert is needed to get things going again. Acked-by: Jens Axboe <[email protected]> Cc: Chaitanya Kulkarni <[email protected]> Cc: Christoph Hellwig <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent f4000cd commit cdb98c2

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

drivers/nvme/host/core.c

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -263,21 +263,6 @@ static inline int nvme_setup_discard(struct nvme_ns *ns, struct request *req,
263263
return BLK_MQ_RQ_QUEUE_OK;
264264
}
265265

266-
static inline void nvme_setup_write_zeroes(struct nvme_ns *ns,
267-
struct request *req, struct nvme_command *cmnd)
268-
{
269-
struct nvme_write_zeroes_cmd *write_zeroes = &cmnd->write_zeroes;
270-
271-
memset(cmnd, 0, sizeof(*cmnd));
272-
write_zeroes->opcode = nvme_cmd_write_zeroes;
273-
write_zeroes->nsid = cpu_to_le32(ns->ns_id);
274-
write_zeroes->slba =
275-
cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
276-
write_zeroes->length =
277-
cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
278-
write_zeroes->control = 0;
279-
}
280-
281266
static inline void nvme_setup_rw(struct nvme_ns *ns, struct request *req,
282267
struct nvme_command *cmnd)
283268
{
@@ -330,8 +315,6 @@ int nvme_setup_cmd(struct nvme_ns *ns, struct request *req,
330315
nvme_setup_flush(ns, cmd);
331316
else if (req_op(req) == REQ_OP_DISCARD)
332317
ret = nvme_setup_discard(ns, req, cmd);
333-
else if (req_op(req) == REQ_OP_WRITE_ZEROES)
334-
nvme_setup_write_zeroes(ns, req, cmd);
335318
else
336319
nvme_setup_rw(ns, req, cmd);
337320

@@ -952,10 +935,6 @@ static void __nvme_revalidate_disk(struct gendisk *disk, struct nvme_id_ns *id)
952935

953936
if (ns->ctrl->oncs & NVME_CTRL_ONCS_DSM)
954937
nvme_config_discard(ns);
955-
if (ns->ctrl->oncs & NVME_CTRL_ONCS_WRITE_ZEROES)
956-
blk_queue_max_write_zeroes_sectors(ns->queue,
957-
((u32)(USHRT_MAX + 1) * bs) >> 9);
958-
959938
blk_mq_unfreeze_queue(disk->queue);
960939
}
961940

0 commit comments

Comments
 (0)