Skip to content

Commit

Permalink
NVMe: Fix calls to dma_unmap_sg
Browse files Browse the repository at this point in the history
dma_unmap_sg() must be called with the same 'nents' passed to
dma_map_sg(), not the number returned from dma_map_sg().

Signed-off-by: Nisheeth Bhat <nisheeth.bhat@intel.com>
Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
  • Loading branch information
Nisheeth Bhat authored and Matthew Wilcox committed Nov 4, 2011
1 parent d0ba1e4 commit d1a490e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions drivers/block/nvme.c
Original file line number Diff line number Diff line change
Expand Up @@ -1021,13 +1021,12 @@ static int nvme_map_user_pages(struct nvme_dev *dev, int write,
}

static void nvme_unmap_user_pages(struct nvme_dev *dev, int write,
unsigned long addr, int length,
struct scatterlist *sg, int nents)
unsigned long addr, int length, struct scatterlist *sg)
{
int i, count;

count = DIV_ROUND_UP(offset_in_page(addr) + length, PAGE_SIZE);
dma_unmap_sg(&dev->pci_dev->dev, sg, nents, DMA_FROM_DEVICE);
dma_unmap_sg(&dev->pci_dev->dev, sg, count, DMA_FROM_DEVICE);

for (i = 0; i < count; i++)
put_page(sg_page(&sg[i]));
Expand Down Expand Up @@ -1089,7 +1088,7 @@ static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
else
status = nvme_submit_sync_cmd(nvmeq, &c, NULL, IO_TIMEOUT);

nvme_unmap_user_pages(dev, io.opcode & 1, io.addr, length, sg, nents);
nvme_unmap_user_pages(dev, io.opcode & 1, io.addr, length, sg);
nvme_free_prps(dev, prps);
return status;
}
Expand Down Expand Up @@ -1135,8 +1134,7 @@ static int nvme_user_admin_cmd(struct nvme_ns *ns,
else
status = nvme_submit_admin_cmd(dev, &c, NULL);
if (cmd.data_len) {
nvme_unmap_user_pages(dev, 0, cmd.addr, cmd.data_len, sg,
nents);
nvme_unmap_user_pages(dev, 0, cmd.addr, cmd.data_len, sg);
nvme_free_prps(dev, prps);
}
return status;
Expand Down

0 comments on commit d1a490e

Please sign in to comment.