DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 17.11] mem: fix max DMA maskbit size
@ 2018-08-31 14:53 Alejandro Lucero
  2018-09-02 17:17 ` [dpdk-dev] [dpdk-stable] " Yongseok Koh
  0 siblings, 1 reply; 2+ messages in thread
From: Alejandro Lucero @ 2018-08-31 14:53 UTC (permalink / raw)
  To: dev; +Cc: stable, anatoly.burakov, echaudro

The sanity check inside rte_eal_check_dma_mask is using 47 bits as
the maximum size. It turns out there are some IOMMU hardware reporting
48 bits precluding the IOVA VA mode to be enabled.

It is harmless to raise the maximum mask size to 63 bits.

This patch also removes any reference to unused X86_VA_WIDTH.

Fixes: 3a80bc50c949 ("mem: add function for checking memsegs IOVAs addresses")

Signed-off-by: Alejandro Lucero <alejandro.lucero@netronome.com>
---
 drivers/bus/pci/linux/pci.c               | 1 -
 lib/librte_eal/common/eal_common_memory.c | 5 -----
 2 files changed, 6 deletions(-)

diff --git a/drivers/bus/pci/linux/pci.c b/drivers/bus/pci/linux/pci.c
index c81ed50..44440f2 100644
--- a/drivers/bus/pci/linux/pci.c
+++ b/drivers/bus/pci/linux/pci.c
@@ -583,7 +583,6 @@
 {
 #define VTD_CAP_MGAW_SHIFT	16
 #define VTD_CAP_MGAW_MASK	(0x3fULL << VTD_CAP_MGAW_SHIFT)
-#define X86_VA_WIDTH 47 /* From Documentation/x86/x86_64/mm.txt */
 	struct rte_pci_addr *addr = &dev->addr;
 	char filename[PATH_MAX];
 	FILE *fp;
diff --git a/lib/librte_eal/common/eal_common_memory.c b/lib/librte_eal/common/eal_common_memory.c
index 00ab393..a0922f1 100644
--- a/lib/librte_eal/common/eal_common_memory.c
+++ b/lib/librte_eal/common/eal_common_memory.c
@@ -109,13 +109,8 @@
 	}
 }
 
-#if defined(RTE_ARCH_X86)
-#define X86_VA_WIDTH 47 /* From Documentation/x86/x86_64/mm.txt */
-#define MAX_DMA_MASK_BITS X86_VA_WIDTH
-#else
 /* 63 bits is good enough for a sanity check */
 #define MAX_DMA_MASK_BITS 63
-#endif
 
 /* check memseg iovas are within the required range based on dma mask */
 int
-- 
1.9.1

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

* Re: [dpdk-dev] [dpdk-stable] [PATCH 17.11] mem: fix max DMA maskbit size
  2018-08-31 14:53 [dpdk-dev] [PATCH 17.11] mem: fix max DMA maskbit size Alejandro Lucero
@ 2018-09-02 17:17 ` Yongseok Koh
  0 siblings, 0 replies; 2+ messages in thread
From: Yongseok Koh @ 2018-09-02 17:17 UTC (permalink / raw)
  To: Alejandro Lucero; +Cc: dev, stable, anatoly.burakov, echaudro


> On Aug 31, 2018, at 7:53 AM, Alejandro Lucero <alejandro.lucero@netronome.com> wrote:
> 
> The sanity check inside rte_eal_check_dma_mask is using 47 bits as
> the maximum size. It turns out there are some IOMMU hardware reporting
> 48 bits precluding the IOVA VA mode to be enabled.
> 
> It is harmless to raise the maximum mask size to 63 bits.
> 
> This patch also removes any reference to unused X86_VA_WIDTH.
> 
> Fixes: 3a80bc50c949 ("mem: add function for checking memsegs IOVAs addresses")
> 
> Signed-off-by: Alejandro Lucero <alejandro.lucero@netronome.com>
> ---

Applied to stable/17.11.

Thanks,
Yongseok

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

end of thread, other threads:[~2018-09-02 17:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-31 14:53 [dpdk-dev] [PATCH 17.11] mem: fix max DMA maskbit size Alejandro Lucero
2018-09-02 17:17 ` [dpdk-dev] [dpdk-stable] " Yongseok Koh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).