Linux-NVME Archive on lore.kernel.org
 help / color / mirror / Atom feed
* nvme-pci: about page_size of DMA pool
@ 2018-02-18  7:52 Minwoo Im
  2018-02-20 16:06 ` Keith Busch
  0 siblings, 1 reply; 3+ messages in thread
From: Minwoo Im @ 2018-02-18  7:52 UTC (permalink / raw)


Hi All,

It seems that _PAGE_SIZE_ and _dev->ctrl.page_size_ might be different.
For now, nvme_setup_prp_pools() attempts to create PRP page DMA pool
with PAGE_SIZE instead of dev->ctrl.page_size.

By the way, in nvme_pci_setup_prps(), PRP lists are built by
dev->ctrl.page_size like following code.

for (;;) {
         if (i == page_size >> 3) {
                  ^^^^^^^^^
             __le64 *old_prp_list = prp_list;
             prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);

if dev->ctrl.page_size should be used as is, I guess DMA pool should be
created in dev->ctrl.page_size (But at that time of
nvme_setup_prp_pools(), dev->ctrl.page_size may not be set properly)
somehow instead of PAGE_SIZE.

Additionally, It seems that page_shift in nvme_enable_ctrl() is now
hard-coded to 12 which means dev->ctrl.page_size will always be 4096,
though.


Q1. Should dev->prp_page_pool be created with dev->ctrl.page_size
instead of PAGE_SIZE?

Q2. Is there any special reason why page_shift in nvme_enable_ctrl()
is hard-coded to 12, not PAGE_SHIFT?

Always welcome directives and comments. :)

Sincerely,
Minwoo Im

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

end of thread, other threads:[~2018-02-22 13:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-18  7:52 nvme-pci: about page_size of DMA pool Minwoo Im
2018-02-20 16:06 ` Keith Busch
2018-02-22 13:26   ` Minwoo Im

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox