Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e112af0d authored by Matias Bjørling's avatar Matias Bjørling Committed by Jens Axboe
Browse files

nvme: don't overwrite req->cmd_flags on sync cmd



In __nvme_submit_sync_cmd, the request direction is overwritten when
the REQ_FAILFAST_DRIVER flag is set.

Signed-off-by: default avatarMatias Bjørling <m@bjorling.me>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Fixes: 75619bfa ("NVMe: End sync requests immediately on failure")
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent 2f17d71d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1010,7 +1010,7 @@ int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
		return PTR_ERR(req);

	req->cmd_type = REQ_TYPE_DRV_PRIV;
	req->cmd_flags = REQ_FAILFAST_DRIVER;
	req->cmd_flags |= REQ_FAILFAST_DRIVER;
	req->__data_len = 0;
	req->__sector = (sector_t) -1;
	req->bio = req->biotail = NULL;