Skip to content

Commit

Permalink
nvme-pci: fix HMB size calculation
Browse files Browse the repository at this point in the history
It's possible the preferred HMB size may not be a multiple of the
chunk_size. This patch moves len to function scope and uses that in
the for loop increment so the last iteration doesn't cause the total
size to exceed the allocated HMB size.

Based on an earlier patch from Keith Busch.

Signed-off-by: Christoph Hellwig <[email protected]>
Reported-by: Dan Carpenter <[email protected]>
Reviewed-by: Keith Busch <[email protected]>
Fixes: 87ad72a ("nvme-pci: implement host memory buffer support")
  • Loading branch information
Christoph Hellwig committed Jul 25, 2017
1 parent 9c5358e commit 50cdb7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/nvme/host/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1619,7 +1619,7 @@ static void nvme_free_host_mem(struct nvme_dev *dev)
static int nvme_alloc_host_mem(struct nvme_dev *dev, u64 min, u64 preferred)
{
struct nvme_host_mem_buf_desc *descs;
u32 chunk_size, max_entries;
u32 chunk_size, max_entries, len;
int i = 0;
void **bufs;
u64 size = 0, tmp;
Expand All @@ -1638,10 +1638,10 @@ static int nvme_alloc_host_mem(struct nvme_dev *dev, u64 min, u64 preferred)
if (!bufs)
goto out_free_descs;

for (size = 0; size < preferred; size += chunk_size) {
u32 len = min_t(u64, chunk_size, preferred - size);
for (size = 0; size < preferred; size += len) {
dma_addr_t dma_addr;

len = min_t(u64, chunk_size, preferred - size);
bufs[i] = dma_alloc_attrs(dev->dev, len, &dma_addr, GFP_KERNEL,
DMA_ATTR_NO_KERNEL_MAPPING | DMA_ATTR_NO_WARN);
if (!bufs[i])
Expand Down

0 comments on commit 50cdb7c

Please sign in to comment.