DPDK patches and discussions
 help / color / mirror / Atom feed
From: Thomas Monjalon <thomas@monjalon.net>
To: dev@dpdk.org
Cc: "David Marchand" <david.marchand@redhat.com>,
	"Bruce Richardson" <bruce.richardson@intel.com>,
	"Qi Zhang" <qi.z.zhang@intel.com>,
	"Morten Brørup" <mb@smartsharesystems.com>,
	"Shijith Thotton" <sthotton@marvell.com>,
	"Mahipal Challa" <mchalla@marvell.com>,
	"Harman Kalra" <hkalra@marvell.com>,
	"Ashish Gupta" <ashish.gupta@marvell.com>,
	"Fan Zhang" <fanzhang.oss@gmail.com>
Subject: [PATCH v3 4/5] compress/octeontx: support IOVA forced as VA
Date: Tue, 14 Mar 2023 15:29:57 +0100	[thread overview]
Message-ID: <20230314142958.3479004-5-thomas@monjalon.net> (raw)
In-Reply-To: <20230314142958.3479004-1-thomas@monjalon.net>

From: Mahipal Challa <mchalla@marvell.com>

Claim octeontx compress, common and mempool drivers
do not require IOVA mbuf field,
so they can build when disabling enable_iova_as_pa.

Signed-off-by: Mahipal Challa <mchalla@marvell.com>
---
 drivers/common/octeontx/meson.build   | 2 ++
 drivers/compress/octeontx/meson.build | 2 ++
 drivers/mempool/octeontx/meson.build  | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/drivers/common/octeontx/meson.build b/drivers/common/octeontx/meson.build
index dc060dfea1..a15e2febf5 100644
--- a/drivers/common/octeontx/meson.build
+++ b/drivers/common/octeontx/meson.build
@@ -9,3 +9,5 @@ if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
 endif
 
 sources = files('octeontx_mbox.c')
+
+require_iova_in_mbuf = false
diff --git a/drivers/compress/octeontx/meson.build b/drivers/compress/octeontx/meson.build
index 3a29c3e609..16f973f4d7 100644
--- a/drivers/compress/octeontx/meson.build
+++ b/drivers/compress/octeontx/meson.build
@@ -11,3 +11,5 @@ sources = files('otx_zip.c', 'otx_zip_pmd.c')
 includes += include_directories('include')
 deps += ['mempool_octeontx', 'bus_pci']
 ext_deps += dep
+
+require_iova_in_mbuf = false
diff --git a/drivers/mempool/octeontx/meson.build b/drivers/mempool/octeontx/meson.build
index fb05928129..3ccecac75d 100644
--- a/drivers/mempool/octeontx/meson.build
+++ b/drivers/mempool/octeontx/meson.build
@@ -13,3 +13,5 @@ sources = files(
 )
 
 deps += ['mbuf', 'bus_pci', 'common_octeontx']
+
+require_iova_in_mbuf = false
-- 
2.39.1


  parent reply	other threads:[~2023-03-14 14:30 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-19 11:55 [PATCH] drivers: skip build of sub-libs not supporting IOVA mode Thomas Monjalon
2023-03-02 13:52 ` Zhang, Qi Z
2023-03-02 13:57   ` Thomas Monjalon
2023-03-02 14:16     ` Zhang, Qi Z
2023-03-03 14:23       ` Thomas Monjalon
2023-03-02 14:26 ` Morten Brørup
2023-03-02 16:01 ` [EXT] " Shijith Thotton
2023-03-06 16:13 ` [PATCH v2 0/2] refactor diasbling IOVA as PA Thomas Monjalon
2023-03-06 16:13   ` [PATCH v2 1/2] build: clarify configuration without IOVA field in mbuf Thomas Monjalon
2023-03-06 16:35     ` Morten Brørup
2023-03-06 16:39     ` Bruce Richardson
2023-03-06 19:49       ` Thomas Monjalon
2023-03-09  1:43     ` fengchengwen
2023-03-09  7:29       ` Thomas Monjalon
2023-03-09 11:23         ` fengchengwen
2023-03-09 12:12           ` Thomas Monjalon
2023-03-09 13:10             ` Bruce Richardson
2023-03-13 15:51               ` Thomas Monjalon
2023-03-06 16:13   ` [PATCH v2 2/2] drivers: skip build of sub-libs not supporting IOVA mode Thomas Monjalon
2023-03-14 14:29 ` [PATCH v3 0/5] refactor disabling IOVA as PA Thomas Monjalon
2023-03-14 14:29   ` [PATCH v3 1/5] build: clarify configuration without IOVA field in mbuf Thomas Monjalon
2023-03-15  1:56     ` fengchengwen
2023-03-16 11:00       ` Thomas Monjalon
2023-03-14 14:29   ` [PATCH v3 2/5] net/hns3: support IOVA forced as VA Thomas Monjalon
2023-03-14 14:29   ` [PATCH v3 3/5] dma/hisilicon: " Thomas Monjalon
2023-03-14 14:29   ` Thomas Monjalon [this message]
2023-03-14 14:29   ` [PATCH v3 5/5] drivers: skip build of sub-libs not supporting IOVA mode Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230314142958.3479004-5-thomas@monjalon.net \
    --to=thomas@monjalon.net \
    --cc=ashish.gupta@marvell.com \
    --cc=bruce.richardson@intel.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=fanzhang.oss@gmail.com \
    --cc=hkalra@marvell.com \
    --cc=mb@smartsharesystems.com \
    --cc=mchalla@marvell.com \
    --cc=qi.z.zhang@intel.com \
    --cc=sthotton@marvell.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).