Date: Wed, 18 Jul 2018 15:39:35 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474872 - in head/net/dpdk: . files Message-ID: <201807181539.w6IFdZnF052346@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Wed Jul 18 15:39:35 2018 New Revision: 474872 URL: https://svnweb.freebsd.org/changeset/ports/474872 Log: net/dpdk: update to 18.05 PR: 229863 Submitted by: Bruce Richardson <bruce.richardson@intel.com> (maintainer) Deleted: head/net/dpdk/files/ Modified: head/net/dpdk/Makefile (contents, props changed) head/net/dpdk/distinfo (contents, props changed) head/net/dpdk/pkg-plist (contents, props changed) Modified: head/net/dpdk/Makefile ============================================================================== --- head/net/dpdk/Makefile Wed Jul 18 15:09:02 2018 (r474871) +++ head/net/dpdk/Makefile Wed Jul 18 15:39:35 2018 (r474872) @@ -1,20 +1,22 @@ # $FreeBSD$ PORTNAME= dpdk -PORTVERSION= 16.07 +PORTVERSION= 18.05 PORTREVISION= 1 CATEGORIES= net -MASTER_SITES= http://www.dpdk.org/browse/dpdk/snapshot/ +MASTER_SITES= http://fast.dpdk.org/rel/ MAINTAINER= bruce.richardson@intel.com COMMENT= DPDK: Software libraries for packet processing LICENSE= BSD3CLAUSE -USES= gmake kmod -MAKEFILE= GNUmakefile ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= Only works on 64-bit x86 hardware + +USES= gmake kmod shebangfix +SHEBANG_FILES= usertools/dpdk-pmdinfo.py +MAKEFILE= GNUmakefile NO_PACKAGE= ignores cflags RTE_TARGET= x86_64-native-bsdapp-clang WRKBUILD= ${WRKSRC}/${RTE_TARGET} @@ -22,7 +24,8 @@ MAKE_ENV= V=1 ALL_TARGET= install T=${RTE_TARGET} -OPTIONS_DEFINE= DEBUG TOOLS +OPTIONS_DEFINE= EXAMPLES DEBUG TOOLS +OPTIONS_DEFAULT=TOOLS OPTIONS_SUB= yes DEBUG_DESC= Debugging support (unoptimized build, impacts performance) TOOLS_DESC= Install tool scripts @@ -32,17 +35,12 @@ TOOLS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyelftools>= TOOLS_USES= python:2.7 # build up the list of files in the compiled directory that should be executable -EXEC_FILES= app/cmdline_test \ - app/testpipeline \ - app/testpmd \ - app/testacl \ - app/test +EXEC_FILES= app/testpmd do-install: @${MKDIR} ${STAGEDIR}${DATADIR}/${RTE_TARGET}/app \ ${STAGEDIR}${DATADIR}/${RTE_TARGET}/lib \ - ${STAGEDIR}${DATADIR}/${RTE_TARGET}/include/generic \ - ${STAGEDIR}${DATADIR}/${RTE_TARGET}/include/exec-env + ${STAGEDIR}${DATADIR}/${RTE_TARGET}/include/generic cd ${WRKSRC} && ${COPYTREE_SHARE} mk ${STAGEDIR}${DATADIR} \ && ${COPYTREE_SHARE} examples ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKBUILD}/.config ${STAGEDIR}${DATADIR}/${RTE_TARGET} @@ -58,16 +56,15 @@ do-install: for f in ${WRKBUILD}/include/generic/*.h ; do \ ${INSTALL_DATA} $$f ${STAGEDIR}${DATADIR}/${RTE_TARGET}/include/generic ; \ done - for f in ${WRKBUILD}/include/exec-env/*.h ; do \ - ${INSTALL_DATA} $$f ${STAGEDIR}${DATADIR}/${RTE_TARGET}/include/exec-env ; \ - done ${LN} -sf ${DATADIR}/${RTE_TARGET}/lib ${STAGEDIR}${PREFIX}/lib/dpdk ${LN} -sf ${DATADIR}/${RTE_TARGET}/include ${STAGEDIR}${PREFIX}/include/dpdk - ${LN} -sf ${DATADIR}/examples ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_KLD} ${WRKBUILD}/kmod/* ${STAGEDIR}${KMODDIR} +do-install-EXAMPLES-on: + ${LN} -sf ${DATADIR}/examples ${STAGEDIR}${EXAMPLESDIR} + do-install-TOOLS-on: @${MKDIR} ${STAGEDIR}${PREFIX}/bin/ - ${INSTALL_SCRIPT} ${WRKSRC}/tools/dpdk-pmdinfo.py ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_SCRIPT} ${WRKSRC}/usertools/dpdk-pmdinfo.py ${STAGEDIR}${PREFIX}/bin .include <bsd.port.mk> Modified: head/net/dpdk/distinfo ============================================================================== --- head/net/dpdk/distinfo Wed Jul 18 15:09:02 2018 (r474871) +++ head/net/dpdk/distinfo Wed Jul 18 15:39:35 2018 (r474872) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472650936 -SHA256 (dpdk-16.07.tar.gz) = cc982455a74357e465112bede5c29451b6eeb35f8c1c0dcea280dd3e7829f0e9 -SIZE (dpdk-16.07.tar.gz) = 16961844 +TIMESTAMP = 1531832788 +SHA256 (dpdk-18.05.tar.gz) = 75bab8c79acca989b04bc989bdcaf66ef6f737f2ef9a8f5bcbfddc0ad2209834 +SIZE (dpdk-18.05.tar.gz) = 13904476 Modified: head/net/dpdk/pkg-plist ============================================================================== --- head/net/dpdk/pkg-plist Wed Jul 18 15:09:02 2018 (r474871) +++ head/net/dpdk/pkg-plist Wed Jul 18 15:39:35 2018 (r474872) @@ -3,25 +3,23 @@ include/dpdk lib/dpdk %%DATADIR%%/examples/Makefile +%%DATADIR%%/examples/bbdev_app/Makefile +%%DATADIR%%/examples/bbdev_app/main.c +%%DATADIR%%/examples/bbdev_app/meson.build %%DATADIR%%/examples/bond/Makefile %%DATADIR%%/examples/bond/main.c %%DATADIR%%/examples/bond/main.h +%%DATADIR%%/examples/bond/meson.build %%DATADIR%%/examples/cmdline/Makefile %%DATADIR%%/examples/cmdline/commands.c %%DATADIR%%/examples/cmdline/commands.h %%DATADIR%%/examples/cmdline/main.c +%%DATADIR%%/examples/cmdline/meson.build %%DATADIR%%/examples/cmdline/parse_obj_list.c %%DATADIR%%/examples/cmdline/parse_obj_list.h %%DATADIR%%/examples/distributor/Makefile %%DATADIR%%/examples/distributor/main.c -%%DATADIR%%/examples/dpdk_qat/Makefile -%%DATADIR%%/examples/dpdk_qat/config_files/coleto/dh895xcc_qa_dev0.conf -%%DATADIR%%/examples/dpdk_qat/config_files/shumway/dh89xxcc_qa_dev0.conf -%%DATADIR%%/examples/dpdk_qat/config_files/shumway/dh89xxcc_qa_dev1.conf -%%DATADIR%%/examples/dpdk_qat/config_files/stargo/dh89xxcc_qa_dev0.conf -%%DATADIR%%/examples/dpdk_qat/crypto.c -%%DATADIR%%/examples/dpdk_qat/crypto.h -%%DATADIR%%/examples/dpdk_qat/main.c +%%DATADIR%%/examples/distributor/meson.build %%DATADIR%%/examples/ethtool/Makefile %%DATADIR%%/examples/ethtool/ethtool-app/Makefile %%DATADIR%%/examples/ethtool/ethtool-app/ethapp.c @@ -30,149 +28,152 @@ lib/dpdk %%DATADIR%%/examples/ethtool/lib/Makefile %%DATADIR%%/examples/ethtool/lib/rte_ethtool.c %%DATADIR%%/examples/ethtool/lib/rte_ethtool.h +%%DATADIR%%/examples/ethtool/meson.build +%%DATADIR%%/examples/eventdev_pipeline/Makefile +%%DATADIR%%/examples/eventdev_pipeline/main.c +%%DATADIR%%/examples/eventdev_pipeline/meson.build +%%DATADIR%%/examples/eventdev_pipeline/pipeline_common.h +%%DATADIR%%/examples/eventdev_pipeline/pipeline_worker_generic.c +%%DATADIR%%/examples/eventdev_pipeline/pipeline_worker_tx.c %%DATADIR%%/examples/exception_path/Makefile %%DATADIR%%/examples/exception_path/main.c +%%DATADIR%%/examples/exception_path/meson.build +%%DATADIR%%/examples/flow_classify/Makefile +%%DATADIR%%/examples/flow_classify/flow_classify.c +%%DATADIR%%/examples/flow_classify/ipv4_rules_file.txt +%%DATADIR%%/examples/flow_classify/meson.build +%%DATADIR%%/examples/flow_filtering/Makefile +%%DATADIR%%/examples/flow_filtering/flow_blocks.c +%%DATADIR%%/examples/flow_filtering/main.c +%%DATADIR%%/examples/flow_filtering/meson.build %%DATADIR%%/examples/helloworld/Makefile %%DATADIR%%/examples/helloworld/main.c +%%DATADIR%%/examples/helloworld/meson.build %%DATADIR%%/examples/ip_fragmentation/Makefile %%DATADIR%%/examples/ip_fragmentation/main.c +%%DATADIR%%/examples/ip_fragmentation/meson.build %%DATADIR%%/examples/ip_pipeline/Makefile -%%DATADIR%%/examples/ip_pipeline/app.h -%%DATADIR%%/examples/ip_pipeline/config/action.cfg -%%DATADIR%%/examples/ip_pipeline/config/action.sh -%%DATADIR%%/examples/ip_pipeline/config/action.txt -%%DATADIR%%/examples/ip_pipeline/config/diagram-generator.py -%%DATADIR%%/examples/ip_pipeline/config/edge_router_downstream.cfg -%%DATADIR%%/examples/ip_pipeline/config/edge_router_downstream.sh -%%DATADIR%%/examples/ip_pipeline/config/edge_router_upstream.cfg -%%DATADIR%%/examples/ip_pipeline/config/edge_router_upstream.sh -%%DATADIR%%/examples/ip_pipeline/config/firewall.cfg -%%DATADIR%%/examples/ip_pipeline/config/firewall.sh -%%DATADIR%%/examples/ip_pipeline/config/firewall.txt -%%DATADIR%%/examples/ip_pipeline/config/flow.cfg -%%DATADIR%%/examples/ip_pipeline/config/flow.sh -%%DATADIR%%/examples/ip_pipeline/config/flow.txt -%%DATADIR%%/examples/ip_pipeline/config/ip_pipeline.cfg -%%DATADIR%%/examples/ip_pipeline/config/ip_pipeline.sh -%%DATADIR%%/examples/ip_pipeline/config/kni.cfg -%%DATADIR%%/examples/ip_pipeline/config/l2fwd.cfg -%%DATADIR%%/examples/ip_pipeline/config/l3fwd.cfg -%%DATADIR%%/examples/ip_pipeline/config/l3fwd.sh -%%DATADIR%%/examples/ip_pipeline/config/l3fwd_arp.cfg -%%DATADIR%%/examples/ip_pipeline/config/l3fwd_arp.sh -%%DATADIR%%/examples/ip_pipeline/config/network_layers.cfg -%%DATADIR%%/examples/ip_pipeline/config/network_layers.sh -%%DATADIR%%/examples/ip_pipeline/config/pipeline-to-core-mapping.py -%%DATADIR%%/examples/ip_pipeline/config/tm_profile.cfg -%%DATADIR%%/examples/ip_pipeline/config_check.c -%%DATADIR%%/examples/ip_pipeline/config_parse.c -%%DATADIR%%/examples/ip_pipeline/config_parse_tm.c -%%DATADIR%%/examples/ip_pipeline/cpu_core_map.c -%%DATADIR%%/examples/ip_pipeline/cpu_core_map.h -%%DATADIR%%/examples/ip_pipeline/init.c +%%DATADIR%%/examples/ip_pipeline/action.c +%%DATADIR%%/examples/ip_pipeline/action.h +%%DATADIR%%/examples/ip_pipeline/cli.c +%%DATADIR%%/examples/ip_pipeline/cli.h +%%DATADIR%%/examples/ip_pipeline/common.h +%%DATADIR%%/examples/ip_pipeline/conn.c +%%DATADIR%%/examples/ip_pipeline/conn.h +%%DATADIR%%/examples/ip_pipeline/examples/firewall.cli +%%DATADIR%%/examples/ip_pipeline/examples/flow.cli +%%DATADIR%%/examples/ip_pipeline/examples/kni.cli +%%DATADIR%%/examples/ip_pipeline/examples/l2fwd.cli +%%DATADIR%%/examples/ip_pipeline/examples/route.cli +%%DATADIR%%/examples/ip_pipeline/examples/route_ecmp.cli +%%DATADIR%%/examples/ip_pipeline/examples/tap.cli +%%DATADIR%%/examples/ip_pipeline/hash_func.h +%%DATADIR%%/examples/ip_pipeline/hash_func_arm64.h +%%DATADIR%%/examples/ip_pipeline/kni.c +%%DATADIR%%/examples/ip_pipeline/kni.h +%%DATADIR%%/examples/ip_pipeline/link.c +%%DATADIR%%/examples/ip_pipeline/link.h %%DATADIR%%/examples/ip_pipeline/main.c +%%DATADIR%%/examples/ip_pipeline/mempool.c +%%DATADIR%%/examples/ip_pipeline/mempool.h +%%DATADIR%%/examples/ip_pipeline/meson.build %%DATADIR%%/examples/ip_pipeline/parser.c %%DATADIR%%/examples/ip_pipeline/parser.h +%%DATADIR%%/examples/ip_pipeline/pipeline.c %%DATADIR%%/examples/ip_pipeline/pipeline.h -%%DATADIR%%/examples/ip_pipeline/pipeline/hash_func.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_actions_common.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_common_be.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_common_be.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_common_fe.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_common_fe.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_firewall.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_firewall.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_firewall_be.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_firewall_be.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_flow_actions.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_flow_actions.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_flow_actions_be.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_flow_actions_be.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_flow_classification.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_flow_classification.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_flow_classification_be.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_flow_classification_be.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_master.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_master.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_master_be.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_master_be.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_passthrough.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_passthrough.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_passthrough_be.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_passthrough_be.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_routing.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_routing.h -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_routing_be.c -%%DATADIR%%/examples/ip_pipeline/pipeline/pipeline_routing_be.h -%%DATADIR%%/examples/ip_pipeline/pipeline_be.h +%%DATADIR%%/examples/ip_pipeline/swq.c +%%DATADIR%%/examples/ip_pipeline/swq.h +%%DATADIR%%/examples/ip_pipeline/tap.c +%%DATADIR%%/examples/ip_pipeline/tap.h %%DATADIR%%/examples/ip_pipeline/thread.c %%DATADIR%%/examples/ip_pipeline/thread.h -%%DATADIR%%/examples/ip_pipeline/thread_fe.c -%%DATADIR%%/examples/ip_pipeline/thread_fe.h +%%DATADIR%%/examples/ip_pipeline/tmgr.c +%%DATADIR%%/examples/ip_pipeline/tmgr.h %%DATADIR%%/examples/ip_reassembly/Makefile %%DATADIR%%/examples/ip_reassembly/main.c +%%DATADIR%%/examples/ip_reassembly/meson.build %%DATADIR%%/examples/ipsec-secgw/Makefile +%%DATADIR%%/examples/ipsec-secgw/ep0.cfg +%%DATADIR%%/examples/ipsec-secgw/ep1.cfg %%DATADIR%%/examples/ipsec-secgw/esp.c %%DATADIR%%/examples/ipsec-secgw/esp.h %%DATADIR%%/examples/ipsec-secgw/ipip.h %%DATADIR%%/examples/ipsec-secgw/ipsec-secgw.c %%DATADIR%%/examples/ipsec-secgw/ipsec.c %%DATADIR%%/examples/ipsec-secgw/ipsec.h +%%DATADIR%%/examples/ipsec-secgw/meson.build +%%DATADIR%%/examples/ipsec-secgw/parser.c +%%DATADIR%%/examples/ipsec-secgw/parser.h %%DATADIR%%/examples/ipsec-secgw/rt.c %%DATADIR%%/examples/ipsec-secgw/sa.c %%DATADIR%%/examples/ipsec-secgw/sp4.c %%DATADIR%%/examples/ipsec-secgw/sp6.c %%DATADIR%%/examples/ipv4_multicast/Makefile %%DATADIR%%/examples/ipv4_multicast/main.c +%%DATADIR%%/examples/ipv4_multicast/meson.build %%DATADIR%%/examples/kni/Makefile %%DATADIR%%/examples/kni/main.c +%%DATADIR%%/examples/kni/meson.build %%DATADIR%%/examples/l2fwd-cat/Makefile %%DATADIR%%/examples/l2fwd-cat/cat.c %%DATADIR%%/examples/l2fwd-cat/cat.h %%DATADIR%%/examples/l2fwd-cat/l2fwd-cat.c +%%DATADIR%%/examples/l2fwd-cat/meson.build %%DATADIR%%/examples/l2fwd-crypto/Makefile %%DATADIR%%/examples/l2fwd-crypto/main.c -%%DATADIR%%/examples/l2fwd-ivshmem/Makefile -%%DATADIR%%/examples/l2fwd-ivshmem/guest/Makefile -%%DATADIR%%/examples/l2fwd-ivshmem/guest/guest.c -%%DATADIR%%/examples/l2fwd-ivshmem/host/Makefile -%%DATADIR%%/examples/l2fwd-ivshmem/host/host.c -%%DATADIR%%/examples/l2fwd-ivshmem/include/common.h +%%DATADIR%%/examples/l2fwd-crypto/meson.build %%DATADIR%%/examples/l2fwd-jobstats/Makefile %%DATADIR%%/examples/l2fwd-jobstats/main.c +%%DATADIR%%/examples/l2fwd-jobstats/meson.build %%DATADIR%%/examples/l2fwd-keepalive/Makefile %%DATADIR%%/examples/l2fwd-keepalive/ka-agent/Makefile %%DATADIR%%/examples/l2fwd-keepalive/ka-agent/main.c %%DATADIR%%/examples/l2fwd-keepalive/main.c +%%DATADIR%%/examples/l2fwd-keepalive/meson.build %%DATADIR%%/examples/l2fwd-keepalive/shm.c %%DATADIR%%/examples/l2fwd-keepalive/shm.h %%DATADIR%%/examples/l2fwd/Makefile %%DATADIR%%/examples/l2fwd/main.c +%%DATADIR%%/examples/l2fwd/meson.build %%DATADIR%%/examples/l3fwd-acl/Makefile %%DATADIR%%/examples/l3fwd-acl/main.c +%%DATADIR%%/examples/l3fwd-acl/meson.build %%DATADIR%%/examples/l3fwd-power/Makefile %%DATADIR%%/examples/l3fwd-power/main.c +%%DATADIR%%/examples/l3fwd-power/meson.build %%DATADIR%%/examples/l3fwd-vf/Makefile %%DATADIR%%/examples/l3fwd-vf/main.c +%%DATADIR%%/examples/l3fwd-vf/meson.build %%DATADIR%%/examples/l3fwd/Makefile %%DATADIR%%/examples/l3fwd/l3fwd.h +%%DATADIR%%/examples/l3fwd/l3fwd_altivec.h +%%DATADIR%%/examples/l3fwd/l3fwd_common.h %%DATADIR%%/examples/l3fwd/l3fwd_em.c %%DATADIR%%/examples/l3fwd/l3fwd_em.h +%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm.h +%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm_neon.h %%DATADIR%%/examples/l3fwd/l3fwd_em_hlm_sse.h -%%DATADIR%%/examples/l3fwd/l3fwd_em_sse.h +%%DATADIR%%/examples/l3fwd/l3fwd_em_sequential.h %%DATADIR%%/examples/l3fwd/l3fwd_lpm.c %%DATADIR%%/examples/l3fwd/l3fwd_lpm.h +%%DATADIR%%/examples/l3fwd/l3fwd_lpm_altivec.h +%%DATADIR%%/examples/l3fwd/l3fwd_lpm_neon.h %%DATADIR%%/examples/l3fwd/l3fwd_lpm_sse.h +%%DATADIR%%/examples/l3fwd/l3fwd_neon.h %%DATADIR%%/examples/l3fwd/l3fwd_sse.h %%DATADIR%%/examples/l3fwd/main.c +%%DATADIR%%/examples/l3fwd/meson.build %%DATADIR%%/examples/link_status_interrupt/Makefile %%DATADIR%%/examples/link_status_interrupt/main.c +%%DATADIR%%/examples/link_status_interrupt/meson.build %%DATADIR%%/examples/load_balancer/Makefile %%DATADIR%%/examples/load_balancer/config.c %%DATADIR%%/examples/load_balancer/init.c %%DATADIR%%/examples/load_balancer/main.c %%DATADIR%%/examples/load_balancer/main.h +%%DATADIR%%/examples/load_balancer/meson.build %%DATADIR%%/examples/load_balancer/runtime.c +%%DATADIR%%/examples/meson.build %%DATADIR%%/examples/multi_process/Makefile %%DATADIR%%/examples/multi_process/client_server_mp/Makefile %%DATADIR%%/examples/multi_process/client_server_mp/mp_client/Makefile @@ -188,6 +189,7 @@ lib/dpdk %%DATADIR%%/examples/multi_process/l2fwd_fork/flib.c %%DATADIR%%/examples/multi_process/l2fwd_fork/flib.h %%DATADIR%%/examples/multi_process/l2fwd_fork/main.c +%%DATADIR%%/examples/multi_process/meson.build %%DATADIR%%/examples/multi_process/simple_mp/Makefile %%DATADIR%%/examples/multi_process/simple_mp/main.c %%DATADIR%%/examples/multi_process/simple_mp/mp_commands.c @@ -199,13 +201,19 @@ lib/dpdk %%DATADIR%%/examples/netmap_compat/bridge/bridge.c %%DATADIR%%/examples/netmap_compat/lib/compat_netmap.c %%DATADIR%%/examples/netmap_compat/lib/compat_netmap.h +%%DATADIR%%/examples/netmap_compat/meson.build %%DATADIR%%/examples/netmap_compat/netmap/netmap.h %%DATADIR%%/examples/netmap_compat/netmap/netmap_user.h %%DATADIR%%/examples/packet_ordering/Makefile %%DATADIR%%/examples/packet_ordering/main.c +%%DATADIR%%/examples/packet_ordering/meson.build %%DATADIR%%/examples/performance-thread/Makefile +%%DATADIR%%/examples/performance-thread/common/arch/arm64/ctx.c +%%DATADIR%%/examples/performance-thread/common/arch/arm64/ctx.h +%%DATADIR%%/examples/performance-thread/common/arch/arm64/stack.h %%DATADIR%%/examples/performance-thread/common/arch/x86/ctx.c %%DATADIR%%/examples/performance-thread/common/arch/x86/ctx.h +%%DATADIR%%/examples/performance-thread/common/arch/x86/stack.h %%DATADIR%%/examples/performance-thread/common/common.mk %%DATADIR%%/examples/performance-thread/common/lthread.c %%DATADIR%%/examples/performance-thread/common/lthread.h @@ -229,15 +237,18 @@ lib/dpdk %%DATADIR%%/examples/performance-thread/l3fwd-thread/Makefile %%DATADIR%%/examples/performance-thread/l3fwd-thread/main.c %%DATADIR%%/examples/performance-thread/l3fwd-thread/test.sh +%%DATADIR%%/examples/performance-thread/meson.build %%DATADIR%%/examples/performance-thread/pthread_shim/Makefile %%DATADIR%%/examples/performance-thread/pthread_shim/main.c %%DATADIR%%/examples/performance-thread/pthread_shim/pthread_shim.c %%DATADIR%%/examples/performance-thread/pthread_shim/pthread_shim.h %%DATADIR%%/examples/ptpclient/Makefile +%%DATADIR%%/examples/ptpclient/meson.build %%DATADIR%%/examples/ptpclient/ptpclient.c %%DATADIR%%/examples/qos_meter/Makefile %%DATADIR%%/examples/qos_meter/main.c %%DATADIR%%/examples/qos_meter/main.h +%%DATADIR%%/examples/qos_meter/meson.build %%DATADIR%%/examples/qos_meter/rte_policer.c %%DATADIR%%/examples/qos_meter/rte_policer.h %%DATADIR%%/examples/qos_sched/Makefile @@ -249,11 +260,13 @@ lib/dpdk %%DATADIR%%/examples/qos_sched/init.c %%DATADIR%%/examples/qos_sched/main.c %%DATADIR%%/examples/qos_sched/main.h +%%DATADIR%%/examples/qos_sched/meson.build %%DATADIR%%/examples/qos_sched/profile.cfg %%DATADIR%%/examples/qos_sched/profile_ov.cfg %%DATADIR%%/examples/qos_sched/stats.c %%DATADIR%%/examples/quota_watermark/Makefile %%DATADIR%%/examples/quota_watermark/include/conf.h +%%DATADIR%%/examples/quota_watermark/meson.build %%DATADIR%%/examples/quota_watermark/qw/Makefile %%DATADIR%%/examples/quota_watermark/qw/args.c %%DATADIR%%/examples/quota_watermark/qw/args.h @@ -268,27 +281,49 @@ lib/dpdk %%DATADIR%%/examples/quota_watermark/qwctl/qwctl.h %%DATADIR%%/examples/rxtx_callbacks/Makefile %%DATADIR%%/examples/rxtx_callbacks/main.c +%%DATADIR%%/examples/rxtx_callbacks/meson.build +%%DATADIR%%/examples/server_node_efd/Makefile +%%DATADIR%%/examples/server_node_efd/meson.build +%%DATADIR%%/examples/server_node_efd/node/Makefile +%%DATADIR%%/examples/server_node_efd/node/node.c +%%DATADIR%%/examples/server_node_efd/server/Makefile +%%DATADIR%%/examples/server_node_efd/server/args.c +%%DATADIR%%/examples/server_node_efd/server/args.h +%%DATADIR%%/examples/server_node_efd/server/init.c +%%DATADIR%%/examples/server_node_efd/server/init.h +%%DATADIR%%/examples/server_node_efd/server/main.c +%%DATADIR%%/examples/server_node_efd/shared/common.h +%%DATADIR%%/examples/service_cores/Makefile +%%DATADIR%%/examples/service_cores/main.c +%%DATADIR%%/examples/service_cores/meson.build %%DATADIR%%/examples/skeleton/Makefile %%DATADIR%%/examples/skeleton/basicfwd.c +%%DATADIR%%/examples/skeleton/meson.build %%DATADIR%%/examples/tep_termination/Makefile %%DATADIR%%/examples/tep_termination/main.c %%DATADIR%%/examples/tep_termination/main.h +%%DATADIR%%/examples/tep_termination/meson.build %%DATADIR%%/examples/tep_termination/vxlan.c %%DATADIR%%/examples/tep_termination/vxlan.h %%DATADIR%%/examples/tep_termination/vxlan_setup.c %%DATADIR%%/examples/tep_termination/vxlan_setup.h %%DATADIR%%/examples/timer/Makefile %%DATADIR%%/examples/timer/main.c +%%DATADIR%%/examples/timer/meson.build %%DATADIR%%/examples/vhost/Makefile %%DATADIR%%/examples/vhost/main.c %%DATADIR%%/examples/vhost/main.h -%%DATADIR%%/examples/vhost_xen/Makefile -%%DATADIR%%/examples/vhost_xen/main.c -%%DATADIR%%/examples/vhost_xen/main.h -%%DATADIR%%/examples/vhost_xen/vhost_monitor.c -%%DATADIR%%/examples/vhost_xen/virtio-net.h -%%DATADIR%%/examples/vhost_xen/xen_vhost.h -%%DATADIR%%/examples/vhost_xen/xenstore_parse.c +%%DATADIR%%/examples/vhost/meson.build +%%DATADIR%%/examples/vhost/virtio_net.c +%%DATADIR%%/examples/vhost_crypto/Makefile +%%DATADIR%%/examples/vhost_crypto/main.c +%%DATADIR%%/examples/vhost_crypto/meson.build +%%DATADIR%%/examples/vhost_scsi/Makefile +%%DATADIR%%/examples/vhost_scsi/meson.build +%%DATADIR%%/examples/vhost_scsi/scsi.c +%%DATADIR%%/examples/vhost_scsi/scsi_spec.h +%%DATADIR%%/examples/vhost_scsi/vhost_scsi.c +%%DATADIR%%/examples/vhost_scsi/vhost_scsi.h %%DATADIR%%/examples/vm_power_manager/Makefile %%DATADIR%%/examples/vm_power_manager/channel_manager.c %%DATADIR%%/examples/vm_power_manager/channel_manager.h @@ -299,19 +334,21 @@ lib/dpdk %%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c %%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h %%DATADIR%%/examples/vm_power_manager/main.c +%%DATADIR%%/examples/vm_power_manager/meson.build %%DATADIR%%/examples/vm_power_manager/power_manager.c %%DATADIR%%/examples/vm_power_manager/power_manager.h %%DATADIR%%/examples/vm_power_manager/vm_power_cli.c %%DATADIR%%/examples/vm_power_manager/vm_power_cli.h %%DATADIR%%/examples/vmdq/Makefile %%DATADIR%%/examples/vmdq/main.c +%%DATADIR%%/examples/vmdq/meson.build %%DATADIR%%/examples/vmdq_dcb/Makefile %%DATADIR%%/examples/vmdq_dcb/main.c +%%DATADIR%%/examples/vmdq_dcb/meson.build %%DATADIR%%/mk/arch/arm/rte.vars.mk %%DATADIR%%/mk/arch/arm64/rte.vars.mk %%DATADIR%%/mk/arch/i686/rte.vars.mk %%DATADIR%%/mk/arch/ppc_64/rte.vars.mk -%%DATADIR%%/mk/arch/tile/rte.vars.mk %%DATADIR%%/mk/arch/x86_64/rte.vars.mk %%DATADIR%%/mk/arch/x86_x32/rte.vars.mk %%DATADIR%%/mk/exec-env/bsdapp/rte.app.mk @@ -324,24 +361,22 @@ lib/dpdk %%DATADIR%%/mk/internal/rte.clean-pre.mk %%DATADIR%%/mk/internal/rte.compile-post.mk %%DATADIR%%/mk/internal/rte.compile-pre.mk -%%DATADIR%%/mk/internal/rte.depdirs-post.mk -%%DATADIR%%/mk/internal/rte.depdirs-pre.mk %%DATADIR%%/mk/internal/rte.extvars.mk %%DATADIR%%/mk/internal/rte.install-post.mk %%DATADIR%%/mk/internal/rte.install-pre.mk %%DATADIR%%/mk/machine/armv7a/rte.vars.mk %%DATADIR%%/mk/machine/armv8a/rte.vars.mk -%%DATADIR%%/mk/machine/atm/rte.vars.mk %%DATADIR%%/mk/machine/default/rte.vars.mk +%%DATADIR%%/mk/machine/dpaa/rte.vars.mk %%DATADIR%%/mk/machine/dpaa2/rte.vars.mk %%DATADIR%%/mk/machine/hsw/rte.vars.mk %%DATADIR%%/mk/machine/ivb/rte.vars.mk %%DATADIR%%/mk/machine/native/rte.vars.mk %%DATADIR%%/mk/machine/nhm/rte.vars.mk %%DATADIR%%/mk/machine/power8/rte.vars.mk +%%DATADIR%%/mk/machine/silvermont/rte.vars.mk %%DATADIR%%/mk/machine/snb/rte.vars.mk %%DATADIR%%/mk/machine/thunderx/rte.vars.mk -%%DATADIR%%/mk/machine/tilegx/rte.vars.mk %%DATADIR%%/mk/machine/wsm/rte.vars.mk %%DATADIR%%/mk/machine/xgene1/rte.vars.mk %%DATADIR%%/mk/rte.app.mk @@ -381,11 +416,8 @@ lib/dpdk %%DATADIR%%/mk/toolchain/icc/rte.toolchain-compat.mk %%DATADIR%%/mk/toolchain/icc/rte.vars.mk %%DATADIR%%/x86_64-native-bsdapp-clang/.config -%%DATADIR%%/x86_64-native-bsdapp-clang/app/cmdline_test -%%DATADIR%%/x86_64-native-bsdapp-clang/app/test -%%DATADIR%%/x86_64-native-bsdapp-clang/app/testacl -%%DATADIR%%/x86_64-native-bsdapp-clang/app/testpipeline %%DATADIR%%/x86_64-native-bsdapp-clang/app/testpmd +%%DATADIR%%/x86_64-native-bsdapp-clang/include/bpf_def.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/cmdline.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/cmdline_cirbuf.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/cmdline_parse.h @@ -397,15 +429,17 @@ lib/dpdk %%DATADIR%%/x86_64-native-bsdapp-clang/include/cmdline_rdline.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/cmdline_socket.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/cmdline_vt100.h -%%DATADIR%%/x86_64-native-bsdapp-clang/include/exec-env/rte_interrupts.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_atomic.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_byteorder.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_cpuflags.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_cycles.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_io.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_memcpy.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_pause.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_prefetch.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_rwlock.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_spinlock.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/generic/rte_vect.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_acl.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_acl_osdep.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_alarm.h @@ -414,20 +448,36 @@ lib/dpdk %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_atomic.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_atomic_32.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_atomic_64.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bbdev.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bbdev_op.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bbdev_pmd.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bitmap.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bitrate.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bpf.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bpf_ethdev.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_branch_prediction.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bus.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bus_ifpga.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bus_pci.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_bus_vdev.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_byteorder.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_byteorder_32.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_byteorder_64.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cfgfile.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_common.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_comp.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_compat.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_compressdev.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_compressdev_internal.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_compressdev_pmd.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_config.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cpuflags.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_crypto.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_crypto_sym.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cryptodev.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cryptodev_pmd.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cryptodev_scheduler.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cryptodev_scheduler_operations.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cycles.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_debug.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_dev.h @@ -435,27 +485,53 @@ lib/dpdk %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_devargs.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_distributor.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eal.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eal_interrupts.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eal_memconfig.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_efd.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_errno.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_esp.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_bond.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_bond_8023ad.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_ctrl.h -%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_null.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_ring.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_softnic.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev_core.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev_driver.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev_pci.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev_vdev.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ether.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_crypto_adapter.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_eth_rx_adapter.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_ring.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_timer_adapter.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_timer_adapter_pmd.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eventdev.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eventdev_pmd.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eventdev_pmd_pci.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eventdev_pmd_vdev.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_fbarray.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_fbk_hash.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_flow.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_flow_classify.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_flow_driver.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_gre.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_gro.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_gso.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_hash.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_hash_crc.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_hexdump.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_hypervisor.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_icmp.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_interrupts.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_io.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ip.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ip_frag.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_jhash.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_jobstats.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_keepalive.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_kvargs.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_latencystats.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_launch.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_lcore.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_log.h @@ -463,92 +539,163 @@ lib/dpdk %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_lpm6.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_lpm_sse.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_lru.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_lru_x86.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_malloc.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_malloc_heap.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mbuf.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mbuf_pool_ops.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mbuf_ptype.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_member.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_memcpy.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_memory.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mempool.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_memzone.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_meter.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_metrics.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mtr.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mtr_driver.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_net.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_net_crc.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pause.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pci.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pci_dev_feature_defs.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pci_dev_features.h -%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pci_dev_ids.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pdump.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_per_lcore.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pipeline.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pmd_bnxt.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pmd_i40e.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pmd_ixgbe.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_ethdev.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_fd.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_frag.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_in_action.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_ras.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_ring.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_sched.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_source_sink.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_prefetch.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_random.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_rawdev.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_rawdev_pmd.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_reciprocal.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_red.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_reorder.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ring.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ring_c11_mem.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ring_generic.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_rtm.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_rwlock.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_sched.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_sched_common.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_sctp.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_security.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_security_driver.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_service.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_service_component.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_spinlock.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_string_fns.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_acl.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_action.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_array.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_hash.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_hash_cuckoo.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_lpm.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_lpm_ipv6.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_stub.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_tailq.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_tcp.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_test.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_thash.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_time.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_timer.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_tm.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_tm_driver.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_udp.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_vect.h %%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_version.h +%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_vfio.h %%DATADIR%%/x86_64-native-bsdapp-clang/lib/libdpdk.a -%%DATADIR%%/x86_64-native-bsdapp-clang/lib/libethdev.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_acl.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_bbdev.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_bitratestats.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_bpf.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_bus_ifpga.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_bus_pci.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_bus_vdev.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_cfgfile.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_cmdline.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_common_octeontx.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_compressdev.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_cryptodev.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_distributor.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_eal.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_efd.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_ethdev.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_eventdev.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_flow_classify.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_gro.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_gso.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_hash.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_ip_frag.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_jobstats.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_kvargs.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_latencystats.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_lpm.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_mbuf.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_member.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_mempool.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_mempool_bucket.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_mempool_octeontx.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_mempool_ring.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_mempool_stack.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_meter.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_metrics.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_net.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pci.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pdump.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pipeline.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ark.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_avf.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_axgbe.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_bbdev_null.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_bnxt.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_bond.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_crypto_scheduler.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_cxgbe.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_e1000.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ena.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_enic.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_failsafe.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_fm10k.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_i40e.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ifpga_rawdev.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ixgbe.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_lio.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_null.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_null_crypto.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_octeontx.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_octeontx_ssovf.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_opdl_event.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_qede.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ring.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_sfc_efx.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_skeleton_event.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_skeleton_rawdev.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_softnic.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_sw_event.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_thunderx_nicvf.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_virtio.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_virtio_crypto.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_vmxnet3_uio.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_port.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_rawdev.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_reorder.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_ring.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_sched.a +%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_security.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_table.a %%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_timer.a %%TOOLS%%bin/dpdk-pmdinfo.py
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807181539.w6IFdZnF052346>