Commit 1974b1ae authored by Matthew Wilcox's avatar Matthew Wilcox

NVMe: Check for DMA mapping failure

If dma_map_sg returns 0 (failure), we need to fail the I/O.
Signed-off-by: default avatarMatthew Wilcox <matthew.r.wilcox@intel.com>
parent d567760c
......@@ -451,7 +451,8 @@ static int nvme_submit_bio_queue(struct nvme_queue *nvmeq, struct nvme_ns *ns,
dma_dir = DMA_FROM_DEVICE;
}
nvme_map_bio(nvmeq->q_dmadev, nbio, bio, dma_dir, psegs);
if (nvme_map_bio(nvmeq->q_dmadev, nbio, bio, dma_dir, psegs) == 0)
goto mapping_failed;
cmnd->rw.flags = 1;
cmnd->rw.command_id = cmdid;
......@@ -471,6 +472,11 @@ static int nvme_submit_bio_queue(struct nvme_queue *nvmeq, struct nvme_ns *ns,
return 0;
mapping_failed:
free_nbio(nvmeq, nbio);
bio_endio(bio, -ENOMEM);
return 0;
free_nbio:
free_nbio(nvmeq, nbio);
congestion:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment