DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] eal: add warning for incompatibe requested IOVA mode
@ 2023-06-06 15:39 Viacheslav Ovsiienko
  2023-06-12  9:55 ` Burakov, Anatoly
  0 siblings, 1 reply; 3+ messages in thread
From: Viacheslav Ovsiienko @ 2023-06-06 15:39 UTC (permalink / raw)
  To: dev; +Cc: thomas, david.marchand

The DPDK can be compiled to be run in IOVA VA mode with
'enable_iova_as_pa=false' meson option. It disables support
of the physical address field in the mbufs and application
can not be run in 'IOVA as PA mode'.

The patch adds warning if some bus requires the 'IOVA as PA'
mode in runtime and the 'enable_iova_as_pa=false' meson option
was configured on build.

Signed-off-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
---
 lib/eal/common/eal_common_bus.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/lib/eal/common/eal_common_bus.c b/lib/eal/common/eal_common_bus.c
index deb9fb8a12..acac14131a 100644
--- a/lib/eal/common/eal_common_bus.c
+++ b/lib/eal/common/eal_common_bus.c
@@ -239,9 +239,13 @@ rte_bus_get_iommu_class(void)
 			rte_bus_name(bus),
 			bus_iova_mode == RTE_IOVA_DC ? "DC" :
 			(bus_iova_mode == RTE_IOVA_PA ? "PA" : "VA"));
-		if (bus_iova_mode == RTE_IOVA_PA)
+		if (bus_iova_mode == RTE_IOVA_PA) {
 			buses_want_pa = true;
-		else if (bus_iova_mode == RTE_IOVA_VA)
+			if (!RTE_IOVA_IN_MBUF)
+				RTE_LOG(WARNING, EAL,
+					"Bus %s wants IOVA as PA not compatible with 'enable_iova_as_pa=false' build option.\n",
+					rte_bus_name(bus));
+		} else if (bus_iova_mode == RTE_IOVA_VA)
 			buses_want_va = true;
 	}
 	if (buses_want_va && !buses_want_pa) {
-- 
2.18.1


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

* Re: [PATCH] eal: add warning for incompatibe requested IOVA mode
  2023-06-06 15:39 [PATCH] eal: add warning for incompatibe requested IOVA mode Viacheslav Ovsiienko
@ 2023-06-12  9:55 ` Burakov, Anatoly
  2023-06-12 17:29   ` Thomas Monjalon
  0 siblings, 1 reply; 3+ messages in thread
From: Burakov, Anatoly @ 2023-06-12  9:55 UTC (permalink / raw)
  To: Viacheslav Ovsiienko, dev; +Cc: thomas, david.marchand

On 6/6/2023 4:39 PM, Viacheslav Ovsiienko wrote:
> The DPDK can be compiled to be run in IOVA VA mode with
> 'enable_iova_as_pa=false' meson option. It disables support
> of the physical address field in the mbufs and application
> can not be run in 'IOVA as PA mode'.
> 
> The patch adds warning if some bus requires the 'IOVA as PA'
> mode in runtime and the 'enable_iova_as_pa=false' meson option
> was configured on build.
> 
> Signed-off-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
> ---

Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>

-- 
Thanks,
Anatoly


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

* Re: [PATCH] eal: add warning for incompatibe requested IOVA mode
  2023-06-12  9:55 ` Burakov, Anatoly
@ 2023-06-12 17:29   ` Thomas Monjalon
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2023-06-12 17:29 UTC (permalink / raw)
  To: Viacheslav Ovsiienko; +Cc: dev, david.marchand, Burakov, Anatoly

12/06/2023 11:55, Burakov, Anatoly:
> On 6/6/2023 4:39 PM, Viacheslav Ovsiienko wrote:
> > The DPDK can be compiled to be run in IOVA VA mode with
> > 'enable_iova_as_pa=false' meson option. It disables support
> > of the physical address field in the mbufs and application
> > can not be run in 'IOVA as PA mode'.
> > 
> > The patch adds warning if some bus requires the 'IOVA as PA'
> > mode in runtime and the 'enable_iova_as_pa=false' meson option
> > was configured on build.
> > 
> > Signed-off-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
> 
> Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>

Applied, thanks.




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

end of thread, other threads:[~2023-06-12 17:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-06 15:39 [PATCH] eal: add warning for incompatibe requested IOVA mode Viacheslav Ovsiienko
2023-06-12  9:55 ` Burakov, Anatoly
2023-06-12 17:29   ` Thomas Monjalon

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).