patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Xiaoyu Min <jackmin@nvidia.com>
To: <stable@dpdk.org>,
	Cristian Dumitrescu <cristian.dumitrescu@intel.com>,
	Bruce Richardson <bruce.richardson@intel.com>,
	Harry van Haaren <harry.van.haaren@intel.com>,
	Keith Wiles <keith.wiles@intel.com>,
	"Luca Boccassi" <luca.boccassi@gmail.com>
Subject: [PATCH 20.11] table: fix missing headers on ARM64
Date: Thu, 9 Dec 2021 10:38:49 +0800	[thread overview]
Message-ID: <6347d200b0ca9d26858f87726ee8a21bbdd238b0.1639017159.git.jackmin@nvidia.com> (raw)

rte_lru_arm64.h is included from rte_lru.h if arch is ARM64.
However this file is missed in meson's headers list on ARM64 platform so
it'll not be installed on system.

Add it in headers list if arch is ARM64.

Fixes: 5b9656b157d3 ("lib: build with meson")
Cc: stable@dpdk.org

Signed-off-by: Xiaoyu Min <jackmin@nvidia.com>
---
 lib/librte_table/meson.build | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_table/meson.build b/lib/librte_table/meson.build
index d69678386e..657ea7d193 100644
--- a/lib/librte_table/meson.build
+++ b/lib/librte_table/meson.build
@@ -30,4 +30,6 @@ deps += ['mbuf', 'port', 'lpm', 'hash', 'acl']
 
 if arch_subdir == 'x86'
 	headers += files('rte_lru_x86.h')
+elif arch_subdir == 'arm' and dpdk_conf.has('RTE_ARCH_ARM64')
+	headers += files('rte_lru_arm64.h')
 endif
-- 
2.34.0


             reply	other threads:[~2021-12-09  2:39 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-09  2:38 Xiaoyu Min [this message]
2021-12-09  6:07 ` Xueming(Steven) Li

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=6347d200b0ca9d26858f87726ee8a21bbdd238b0.1639017159.git.jackmin@nvidia.com \
    --to=jackmin@nvidia.com \
    --cc=bruce.richardson@intel.com \
    --cc=cristian.dumitrescu@intel.com \
    --cc=harry.van.haaren@intel.com \
    --cc=keith.wiles@intel.com \
    --cc=luca.boccassi@gmail.com \
    --cc=stable@dpdk.org \
    /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).