Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 May 2020 11:38:09 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r535736 - in head/net/dpdk: . files
Message-ID:  <202005181138.04IBc9nI044898@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Mon May 18 11:38:09 2020
New Revision: 535736
URL: https://svnweb.freebsd.org/changeset/ports/535736

Log:
  net/dpdk: ix build with 13-CURRENT
  
  The automated package builds for net/dpdk are failing on 13-CURRENT
  because of changes to the FreeBSD code in the 13 tree. This update
  provides minor tweaks to the code to fix compatibility with BSD 13.
  
  Two issues were observed:
  * rename of CPU_NAND to CPU_ANDNOT
  * change in vm_page_replace parameters and behaviour
  
  Both issues only required small changes to a single file, and both
  fixes are in the diff attached.
  
  PR:		243058
  Submitted by:	Bruce Richardson <bruce.richardson@intel.com> (maintainer)

Added:
  head/net/dpdk/files/
  head/net/dpdk/files/patch-kernel_freebsd_contigmem_contigmem.c   (contents, props changed)
  head/net/dpdk/files/patch-lib_librte__eal_freebsd_eal_include_rte__os.h   (contents, props changed)
Modified:
  head/net/dpdk/Makefile
  head/net/dpdk/pkg-plist

Modified: head/net/dpdk/Makefile
==============================================================================
--- head/net/dpdk/Makefile	Mon May 18 10:12:22 2020	(r535735)
+++ head/net/dpdk/Makefile	Mon May 18 11:38:09 2020	(r535736)
@@ -16,12 +16,13 @@ ONLY_FOR_ARCHS_REASON=	Only works on 64-bit x86 hardwa
 
 LIB_DEPENDS=	libjansson.so:devel/jansson
 
-USES=		meson kmod shebangfix ssl tar:xz
+USES=		meson kmod shebangfix tar:xz
 MESON_ARGS=	-Dmachine=default -Ddefault_library=shared
 USE_LDCONFIG=	yes
 SHEBANG_FILES=	usertools/dpdk-pmdinfo.py \
 	usertools/dpdk-telemetry-client.py \
 	usertools/dpdk-devbind.py \
+	usertools/dpdk-pmdinfo.py \
 	examples/ipsec-secgw/test/pkttest.py \
 	examples/ipsec-secgw/test/pkttest.sh \
 	examples/ipsec-secgw/test/run_test.sh \

Added: head/net/dpdk/files/patch-kernel_freebsd_contigmem_contigmem.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/dpdk/files/patch-kernel_freebsd_contigmem_contigmem.c	Mon May 18 11:38:09 2020	(r535736)
@@ -0,0 +1,27 @@
+--- kernel/freebsd/contigmem/contigmem.c.orig	2020-01-03 12:22:51 UTC
++++ kernel/freebsd/contigmem/contigmem.c
+@@ -297,19 +297,22 @@ contigmem_cdev_pager_fault(vm_object_t object, vm_ooff
+ 		VM_OBJECT_WLOCK(object);
+ 		vm_page_updatefake(page, paddr, memattr);
+ 	} else {
+-		vm_page_t mret;
+ 		/*
+ 		 * Replace the passed in reqpage page with our own fake page and
+ 		 * free up the original page.
+ 		 */
+ 		page = vm_page_getfake(paddr, memattr);
+ 		VM_OBJECT_WLOCK(object);
+-		mret = vm_page_replace(page, object, (*mres)->pindex);
++#if __FreeBSD__ >= 13
++		vm_page_replace(page, object, (*mres)->pindex, *mres);
++#else
++		vm_page_t mret = vm_page_replace(page, object, (*mres)->pindex);
+ 		KASSERT(mret == *mres,
+ 		    ("invalid page replacement, old=%p, ret=%p", *mres, mret));
+ 		vm_page_lock(mret);
+ 		vm_page_free(mret);
+ 		vm_page_unlock(mret);
++#endif
+ 		*mres = page;
+ 	}
+ 

Added: head/net/dpdk/files/patch-lib_librte__eal_freebsd_eal_include_rte__os.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/dpdk/files/patch-lib_librte__eal_freebsd_eal_include_rte__os.h	Mon May 18 11:38:09 2020	(r535736)
@@ -0,0 +1,27 @@
+--- lib/librte_eal/freebsd/eal/include/rte_os.h.orig	2020-01-03 12:22:03 UTC
++++ lib/librte_eal/freebsd/eal/include/rte_os.h
+@@ -29,6 +29,9 @@ typedef cpuset_t rte_cpuset_t;
+ 	CPU_COPY(&tmp, dst); \
+ } while (0)
+ #define RTE_CPU_FILL(set) CPU_FILL(set)
++
++/* In FreeBSD 13 CPU_NAND macro is CPU_ANDNOT */
++#ifdef CPU_NAND
+ #define RTE_CPU_NOT(dst, src) do \
+ { \
+ 	cpuset_t tmp; \
+@@ -36,5 +39,14 @@ typedef cpuset_t rte_cpuset_t;
+ 	CPU_NAND(&tmp, src); \
+ 	CPU_COPY(&tmp, dst); \
+ } while (0)
++#else
++#define RTE_CPU_NOT(dst, src) do \
++{ \
++	cpuset_t tmp; \
++	CPU_FILL(&tmp); \
++	CPU_ANDNOT(&tmp, src); \
++	CPU_COPY(&tmp, dst); \
++} while (0)
++#endif
+ 
+ #endif /* _RTE_OS_H_ */

Modified: head/net/dpdk/pkg-plist
==============================================================================
--- head/net/dpdk/pkg-plist	Mon May 18 10:12:22 2020	(r535735)
+++ head/net/dpdk/pkg-plist	Mon May 18 11:38:09 2020	(r535736)
@@ -4,6 +4,7 @@
 %%TOOLS%%bin/dpdk-pdump
 %%TOOLS%%bin/dpdk-pmdinfo.py
 %%TOOLS%%bin/dpdk-proc-info
+%%TESTS%%bin/dpdk-test
 bin/dpdk-test-acl
 bin/dpdk-test-bbdev
 bin/dpdk-test-cmdline
@@ -258,6 +259,344 @@ include/rte_version.h
 include/rte_vfio.h
 include/rte_vmbus_reg.h
 include/rte_vxlan.h
+%%EXAMPLES%%%%DATADIR%%/examples/bbdev_app/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/bbdev_app/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/bond/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/bond/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/bond/main.h
+%%EXAMPLES%%%%DATADIR%%/examples/cmdline/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/cmdline/commands.c
+%%EXAMPLES%%%%DATADIR%%/examples/cmdline/commands.h
+%%EXAMPLES%%%%DATADIR%%/examples/cmdline/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/cmdline/parse_obj_list.c
+%%EXAMPLES%%%%DATADIR%%/examples/cmdline/parse_obj_list.h
+%%EXAMPLES%%%%DATADIR%%/examples/distributor/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/distributor/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/ethtool/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/ethapp.c
+%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/ethapp.h
+%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/ethtool/lib/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ethtool/lib/rte_ethtool.c
+%%EXAMPLES%%%%DATADIR%%/examples/ethtool/lib/rte_ethtool.h
+%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/pipeline_common.h
+%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/pipeline_worker_generic.c
+%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/pipeline_worker_tx.c
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_dev_self_test.c
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_dev_self_test.h
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation.c
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation.h
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_aes.c
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_ccm.c
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_cmac.c
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_gcm.c
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_hmac.c
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_sha.c
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_tdes.c
+%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/flow_classify/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/flow_classify/flow_classify.c
+%%EXAMPLES%%%%DATADIR%%/examples/flow_classify/ipv4_rules_file.txt
+%%EXAMPLES%%%%DATADIR%%/examples/flow_filtering/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/flow_filtering/flow_blocks.c
+%%EXAMPLES%%%%DATADIR%%/examples/flow_filtering/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/parse.c
+%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/parse.h
+%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/vm_power_cli_guest.c
+%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/vm_power_cli_guest.h
+%%EXAMPLES%%%%DATADIR%%/examples/helloworld/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/helloworld/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/hotplug_mp/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/hotplug_mp/commands.c
+%%EXAMPLES%%%%DATADIR%%/examples/hotplug_mp/commands.h
+%%EXAMPLES%%%%DATADIR%%/examples/hotplug_mp/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/ioat/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ioat/ioatfwd.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_fragmentation/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ip_fragmentation/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/action.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/action.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cli.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cli.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/common.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/conn.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/conn.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cryptodev.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cryptodev.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/firewall.cli
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/flow.cli
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/flow_crypto.cli
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/kni.cli
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/l2fwd.cli
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/route.cli
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/route_ecmp.cli
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/rss.cli
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/tap.cli
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/kni.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/kni.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/link.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/link.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/mempool.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/mempool.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/parser.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/parser.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/pipeline.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/pipeline.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/swq.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/swq.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tap.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tap.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/thread.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/thread.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tmgr.c
+%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tmgr.h
+%%EXAMPLES%%%%DATADIR%%/examples/ip_reassembly/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ip_reassembly/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ep0.cfg
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ep1.cfg
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/esp.c
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/esp.h
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipip.h
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec-secgw.c
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec.c
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec.h
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec_process.c
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/parser.c
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/parser.h
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/rt.c
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sa.c
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sp4.c
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sp6.c
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/bypass_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/common_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/common_defs_secgw.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/data_rxtx.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/linux_test4.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/linux_test6.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/pkttest.py
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/pkttest.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/run_test.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_common_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_esn_atom_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_esn_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_old_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_common_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_esn_atom_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_esn_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_old_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_common_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_esn_atom_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_esn_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_old_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_common_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_esn_atom_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_esn_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_inline_crypto_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_inline_crypto_fallback_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_inline_crypto_old_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_old_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_ipv6opts.py
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_common_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_esn_atom_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_esn_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_old_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_common_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_esn_atom_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_esn_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_old_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_common_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_esn_atom_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_esn_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_old_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_common_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_esn_atom_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_esn_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_inline_crypto_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_inline_crypto_fallback_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_inline_crypto_old_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_old_defs.sh
+%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_null_header_reconstruct.py
+%%EXAMPLES%%%%DATADIR%%/examples/ipv4_multicast/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ipv4_multicast/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/kni/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/kni/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/cat.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/cat.h
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/l2fwd-cat.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-crypto/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-crypto/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_common.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_common.h
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event.h
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event_generic.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event_internal_port.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_poll.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_poll.h
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-jobstats/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-jobstats/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/ka-agent/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/ka-agent/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/shm.c
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/shm.h
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l2fwd/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-acl/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-acl/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/main.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/perf_core.c
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/perf_core.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-thread/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-thread/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-thread/test.sh
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_altivec.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_common.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em.c
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm_neon.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm_sse.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_sequential.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm.c
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm_altivec.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm_neon.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm_sse.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_neon.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_sse.h
+%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/link_status_interrupt/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/link_status_interrupt/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/mp_client/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/mp_client/client.c
+%%EXAMPLES%%%%DATADIR%%/examples/mp_server/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/mp_server/args.c
+%%EXAMPLES%%%%DATADIR%%/examples/mp_server/args.h
+%%EXAMPLES%%%%DATADIR%%/examples/mp_server/init.c
+%%EXAMPLES%%%%DATADIR%%/examples/mp_server/init.h
+%%EXAMPLES%%%%DATADIR%%/examples/mp_server/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/node/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/node/node.c
+%%EXAMPLES%%%%DATADIR%%/examples/ntb/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ntb/ntb_fwd.c
+%%EXAMPLES%%%%DATADIR%%/examples/packet_ordering/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/packet_ordering/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/pthread_shim/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/pthread_shim/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/pthread_shim/pthread_shim.c
+%%EXAMPLES%%%%DATADIR%%/examples/pthread_shim/pthread_shim.h
+%%EXAMPLES%%%%DATADIR%%/examples/ptpclient/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/ptpclient/ptpclient.c
+%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/main.h
+%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/rte_policer.c
+%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/rte_policer.h
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/app_thread.c
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/args.c
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/cfg_file.c
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/cfg_file.h
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/cmdline.c
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/init.c
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/main.h
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/profile.cfg
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/profile_ov.cfg
+%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/stats.c
+%%EXAMPLES%%%%DATADIR%%/examples/rxtx_callbacks/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/rxtx_callbacks/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/server/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/server/args.c
+%%EXAMPLES%%%%DATADIR%%/examples/server/args.h
+%%EXAMPLES%%%%DATADIR%%/examples/server/init.c
+%%EXAMPLES%%%%DATADIR%%/examples/server/init.h
+%%EXAMPLES%%%%DATADIR%%/examples/server/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/service_cores/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/service_cores/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/simple_mp/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/simple_mp/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/simple_mp/mp_commands.c
+%%EXAMPLES%%%%DATADIR%%/examples/simple_mp/mp_commands.h
+%%EXAMPLES%%%%DATADIR%%/examples/skeleton/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/skeleton/basicfwd.c
+%%EXAMPLES%%%%DATADIR%%/examples/symmetric_mp/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/symmetric_mp/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/main.h
+%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/vxlan.c
+%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/vxlan.h
+%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/vxlan_setup.c
+%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/vxlan_setup.h
+%%EXAMPLES%%%%DATADIR%%/examples/timer/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/timer/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/vdpa/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/vdpa/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/vhost/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/vhost/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/vhost/main.h
+%%EXAMPLES%%%%DATADIR%%/examples/vhost/virtio_net.c
+%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/blk.c
+%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/blk_spec.h
+%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/vhost_blk.c
+%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/vhost_blk.h
+%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/vhost_blk_compat.c
+%%EXAMPLES%%%%DATADIR%%/examples/vhost_crypto/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/vhost_crypto/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_manager.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_manager.h
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_monitor.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_monitor.h
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/meson.build
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/parse.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/parse.h
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/oob_monitor.h
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/oob_monitor_nop.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/oob_monitor_x86.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/parse.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/parse.h
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/power_manager.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/power_manager.h
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/vm_power_cli.c
+%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/vm_power_cli.h
+%%EXAMPLES%%%%DATADIR%%/examples/vmdq/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/vmdq/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/vmdq_dcb/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/vmdq_dcb/main.c
 lib/dpdk/pmds-20.0/librte_bus_ifpga.so
 lib/dpdk/pmds-20.0/librte_bus_ifpga.so.20.0
 lib/dpdk/pmds-20.0/librte_bus_pci.so
@@ -290,6 +629,8 @@ lib/dpdk/pmds-20.0/librte_pmd_bbdev_null.so
 lib/dpdk/pmds-20.0/librte_pmd_bbdev_null.so.20.0
 lib/dpdk/pmds-20.0/librte_pmd_bbdev_turbo_sw.so
 lib/dpdk/pmds-20.0/librte_pmd_bbdev_turbo_sw.so.20.0
+lib/dpdk/pmds-20.0/librte_pmd_bnx2x.so
+lib/dpdk/pmds-20.0/librte_pmd_bnx2x.so.20.0
 lib/dpdk/pmds-20.0/librte_pmd_bnxt.so
 lib/dpdk/pmds-20.0/librte_pmd_bnxt.so.20.0
 lib/dpdk/pmds-20.0/librte_pmd_bond.so
@@ -358,6 +699,8 @@ lib/dpdk/pmds-20.0/librte_pmd_virtio_crypto.so
 lib/dpdk/pmds-20.0/librte_pmd_virtio_crypto.so.20.0
 lib/dpdk/pmds-20.0/librte_pmd_vmxnet3.so
 lib/dpdk/pmds-20.0/librte_pmd_vmxnet3.so.20.0
+lib/dpdk/pmds-20.0/librte_pmd_zlib.so
+lib/dpdk/pmds-20.0/librte_pmd_zlib.so.20.0
 lib/dpdk/pmds-20.0/librte_rawdev_ioat.so
 lib/dpdk/pmds-20.0/librte_rawdev_ioat.so.20.0
 lib/dpdk/pmds-20.0/librte_rawdev_ntb.so
@@ -513,6 +856,9 @@ lib/librte_pmd_bbdev_null.so.20.0
 lib/librte_pmd_bbdev_turbo_sw.a
 lib/librte_pmd_bbdev_turbo_sw.so
 lib/librte_pmd_bbdev_turbo_sw.so.20.0
+lib/librte_pmd_bnx2x.a
+lib/librte_pmd_bnx2x.so
+lib/librte_pmd_bnx2x.so.20.0
 lib/librte_pmd_bnxt.a
 lib/librte_pmd_bnxt.so
 lib/librte_pmd_bnxt.so.20.0
@@ -615,6 +961,9 @@ lib/librte_pmd_virtio_crypto.so.20.0
 lib/librte_pmd_vmxnet3.a
 lib/librte_pmd_vmxnet3.so
 lib/librte_pmd_vmxnet3.so.20.0
+lib/librte_pmd_zlib.a
+lib/librte_pmd_zlib.so
+lib/librte_pmd_zlib.so.20.0
 lib/librte_port.a
 lib/librte_port.so
 lib/librte_port.so.20.0
@@ -661,341 +1010,3 @@ lib/librte_timer.a
 lib/librte_timer.so
 lib/librte_timer.so.20.0
 libdata/pkgconfig/libdpdk.pc
-%%EXAMPLES%%%%DATADIR%%/examples/bbdev_app/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/bbdev_app/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/bond/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/bond/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/bond/main.h
-%%EXAMPLES%%%%DATADIR%%/examples/cmdline/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/cmdline/commands.c
-%%EXAMPLES%%%%DATADIR%%/examples/cmdline/commands.h
-%%EXAMPLES%%%%DATADIR%%/examples/cmdline/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/cmdline/parse_obj_list.c
-%%EXAMPLES%%%%DATADIR%%/examples/cmdline/parse_obj_list.h
-%%EXAMPLES%%%%DATADIR%%/examples/distributor/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/distributor/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/ethtool/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/ethapp.c
-%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/ethapp.h
-%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/ethtool/lib/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ethtool/lib/rte_ethtool.c
-%%EXAMPLES%%%%DATADIR%%/examples/ethtool/lib/rte_ethtool.h
-%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/pipeline_common.h
-%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/pipeline_worker_generic.c
-%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/pipeline_worker_tx.c
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_dev_self_test.c
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_dev_self_test.h
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation.c
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation.h
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_aes.c
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_ccm.c
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_cmac.c
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_gcm.c
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_hmac.c
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_sha.c
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_tdes.c
-%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/flow_classify/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/flow_classify/flow_classify.c
-%%EXAMPLES%%%%DATADIR%%/examples/flow_classify/ipv4_rules_file.txt
-%%EXAMPLES%%%%DATADIR%%/examples/flow_filtering/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/flow_filtering/flow_blocks.c
-%%EXAMPLES%%%%DATADIR%%/examples/flow_filtering/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/parse.c
-%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/parse.h
-%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/vm_power_cli_guest.c
-%%EXAMPLES%%%%DATADIR%%/examples/guest_cli/vm_power_cli_guest.h
-%%EXAMPLES%%%%DATADIR%%/examples/helloworld/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/helloworld/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/hotplug_mp/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/hotplug_mp/commands.c
-%%EXAMPLES%%%%DATADIR%%/examples/hotplug_mp/commands.h
-%%EXAMPLES%%%%DATADIR%%/examples/hotplug_mp/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/ioat/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ioat/ioatfwd.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_fragmentation/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ip_fragmentation/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/action.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/action.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cli.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cli.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/common.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/conn.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/conn.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cryptodev.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cryptodev.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/firewall.cli
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/flow.cli
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/flow_crypto.cli
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/kni.cli
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/l2fwd.cli
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/route.cli
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/route_ecmp.cli
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/rss.cli
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/tap.cli
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/kni.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/kni.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/link.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/link.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/mempool.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/mempool.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/parser.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/parser.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/pipeline.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/pipeline.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/swq.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/swq.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tap.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tap.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/thread.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/thread.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tmgr.c
-%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tmgr.h
-%%EXAMPLES%%%%DATADIR%%/examples/ip_reassembly/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ip_reassembly/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ep0.cfg
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ep1.cfg
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/esp.c
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/esp.h
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipip.h
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec-secgw.c
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec.c
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec.h
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec_process.c
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/parser.c
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/parser.h
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/rt.c
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sa.c
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sp4.c
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sp6.c
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/bypass_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/common_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/common_defs_secgw.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/data_rxtx.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/linux_test4.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/linux_test6.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/pkttest.py
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/pkttest.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/run_test.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_common_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_esn_atom_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_esn_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_old_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_common_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_esn_atom_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_esn_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_old_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_common_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_esn_atom_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_esn_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_old_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_common_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_esn_atom_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_esn_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_inline_crypto_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_inline_crypto_fallback_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_inline_crypto_old_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_old_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_ipv6opts.py
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_common_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_esn_atom_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_esn_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_old_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_common_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_esn_atom_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_esn_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_old_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_common_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_esn_atom_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_esn_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_old_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_common_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_esn_atom_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_esn_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_inline_crypto_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_inline_crypto_fallback_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_inline_crypto_old_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_old_defs.sh
-%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_null_header_reconstruct.py
-%%EXAMPLES%%%%DATADIR%%/examples/ipv4_multicast/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ipv4_multicast/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/kni/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/kni/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/cat.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/cat.h
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/l2fwd-cat.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-crypto/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-crypto/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_common.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_common.h
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event.h
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event_generic.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event_internal_port.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_poll.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_poll.h
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-jobstats/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-jobstats/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/ka-agent/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/ka-agent/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/shm.c
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/shm.h
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l2fwd/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-acl/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-acl/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/main.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/perf_core.c
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/perf_core.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-thread/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-thread/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-thread/test.sh
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_altivec.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_common.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em.c
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm_neon.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm_sse.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_sequential.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm.c
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm_altivec.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm_neon.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm_sse.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_neon.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_sse.h
-%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/link_status_interrupt/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/link_status_interrupt/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/mp_client/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/mp_client/client.c
-%%EXAMPLES%%%%DATADIR%%/examples/mp_server/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/mp_server/args.c
-%%EXAMPLES%%%%DATADIR%%/examples/mp_server/args.h
-%%EXAMPLES%%%%DATADIR%%/examples/mp_server/init.c
-%%EXAMPLES%%%%DATADIR%%/examples/mp_server/init.h
-%%EXAMPLES%%%%DATADIR%%/examples/mp_server/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/node/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/node/node.c
-%%EXAMPLES%%%%DATADIR%%/examples/ntb/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ntb/ntb_fwd.c
-%%EXAMPLES%%%%DATADIR%%/examples/packet_ordering/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/packet_ordering/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/pthread_shim/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/pthread_shim/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/pthread_shim/pthread_shim.c
-%%EXAMPLES%%%%DATADIR%%/examples/pthread_shim/pthread_shim.h
-%%EXAMPLES%%%%DATADIR%%/examples/ptpclient/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/ptpclient/ptpclient.c
-%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/main.h
-%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/rte_policer.c
-%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/rte_policer.h
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/app_thread.c
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/args.c
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/cfg_file.c
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/cfg_file.h
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/cmdline.c
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/init.c
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/main.h
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/profile.cfg
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/profile_ov.cfg
-%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/stats.c
-%%EXAMPLES%%%%DATADIR%%/examples/rxtx_callbacks/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/rxtx_callbacks/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/server/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/server/args.c
-%%EXAMPLES%%%%DATADIR%%/examples/server/args.h
-%%EXAMPLES%%%%DATADIR%%/examples/server/init.c
-%%EXAMPLES%%%%DATADIR%%/examples/server/init.h
-%%EXAMPLES%%%%DATADIR%%/examples/server/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/service_cores/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/service_cores/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/simple_mp/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/simple_mp/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/simple_mp/mp_commands.c
-%%EXAMPLES%%%%DATADIR%%/examples/simple_mp/mp_commands.h
-%%EXAMPLES%%%%DATADIR%%/examples/skeleton/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/skeleton/basicfwd.c
-%%EXAMPLES%%%%DATADIR%%/examples/symmetric_mp/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/symmetric_mp/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/main.h
-%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/vxlan.c
-%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/vxlan.h
-%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/vxlan_setup.c
-%%EXAMPLES%%%%DATADIR%%/examples/tep_termination/vxlan_setup.h
-%%EXAMPLES%%%%DATADIR%%/examples/timer/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/timer/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/vdpa/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/vdpa/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/vhost/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/vhost/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/vhost/main.h
-%%EXAMPLES%%%%DATADIR%%/examples/vhost/virtio_net.c
-%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/blk.c
-%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/blk_spec.h
-%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/vhost_blk.c
-%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/vhost_blk.h
-%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/vhost_blk_compat.c
-%%EXAMPLES%%%%DATADIR%%/examples/vhost_crypto/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/vhost_crypto/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_manager.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_manager.h
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_monitor.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_monitor.h
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/meson.build
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/parse.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/parse.h
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/oob_monitor.h
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/oob_monitor_nop.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/oob_monitor_x86.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/parse.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/parse.h
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/power_manager.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/power_manager.h
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/vm_power_cli.c
-%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/vm_power_cli.h
-%%EXAMPLES%%%%DATADIR%%/examples/vmdq/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/vmdq/main.c
-%%EXAMPLES%%%%DATADIR%%/examples/vmdq_dcb/Makefile
-%%EXAMPLES%%%%DATADIR%%/examples/vmdq_dcb/main.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005181138.04IBc9nI044898>