All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nvme/pci: Fix HMB size calculation
@ 2017-07-17 23:45 Keith Busch
  2017-07-17 23:47 ` Keith Busch
  2017-07-18 17:39 ` Christoph Hellwig
  0 siblings, 2 replies; 4+ messages in thread
From: Keith Busch @ 2017-07-17 23:45 UTC (permalink / raw)


It's possible the preferred HMB size may not be a multiple of the
chunk_size. This patch will set the chunk_size to the descriptor's actual
length so the last iteration doesn't cause the total size to exceed the
allocated HMB size.

Signed-off-by: Keith Busch <keith.busch at intel.com>
---
 drivers/nvme/host/pci.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index d321597..e22ffda 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -1641,6 +1641,7 @@ static int nvme_alloc_host_mem(struct nvme_dev *dev, u64 min, u64 preferred)
 		if (!bufs[i])
 			break;
 
+		chunk_size = len;
 		descs[i].addr = cpu_to_le64(dma_addr);
 		descs[i].size = cpu_to_le32(len / dev->ctrl.page_size);
 		i++;
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-07-18 18:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-17 23:45 [PATCH] nvme/pci: Fix HMB size calculation Keith Busch
2017-07-17 23:47 ` Keith Busch
2017-07-18 17:39 ` Christoph Hellwig
2017-07-18 18:04   ` Keith Busch

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.