svn commit: r569240 - in head/net/dpdk: . files

Vanilla I. Shu vanilla at FreeBSD.org
Fri Mar 26 03:04:59 UTC 2021


Author: vanilla
Date: Fri Mar 26 03:04:58 2021
New Revision: 569240
URL: https://svnweb.freebsd.org/changeset/ports/569240

Log:
  Update to 19.11.7.
  
  PR:		254403
  Submitted by:	maintainer

Added:
  head/net/dpdk/files/patch-examples_meson.build   (contents, props changed)
  head/net/dpdk/files/patch-meson.build   (contents, props changed)
Modified:
  head/net/dpdk/Makefile
  head/net/dpdk/distinfo
  head/net/dpdk/pkg-plist

Modified: head/net/dpdk/Makefile
==============================================================================
--- head/net/dpdk/Makefile	Fri Mar 26 02:05:33 2021	(r569239)
+++ head/net/dpdk/Makefile	Fri Mar 26 03:04:58 2021	(r569240)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	dpdk
-DISTVERSION=	19.11.4
+DISTVERSION=	19.11.7
 CATEGORIES=	net
 MASTER_SITES=	http://fast.dpdk.org/rel/
 

Modified: head/net/dpdk/distinfo
==============================================================================
--- head/net/dpdk/distinfo	Fri Mar 26 02:05:33 2021	(r569239)
+++ head/net/dpdk/distinfo	Fri Mar 26 03:04:58 2021	(r569240)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1599558665
-SHA256 (dpdk-19.11.4.tar.xz) = 657070a669364efef66b8b8bbe862f2611b367b6126969c43acdc06f2a172dbd
-SIZE (dpdk-19.11.4.tar.xz) = 12433520
+TIMESTAMP = 1616152895
+SHA256 (dpdk-19.11.7.tar.xz) = 6060d4f87e985c8d03ccdc223e96ecb3e115fd43912113408f3c57c025b02c2d
+SIZE (dpdk-19.11.7.tar.xz) = 12454792

Added: head/net/dpdk/files/patch-examples_meson.build
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/dpdk/files/patch-examples_meson.build	Fri Mar 26 03:04:58 2021	(r569240)
@@ -0,0 +1,15 @@
+--- examples/meson.build
++++ examples/meson.build
+@@ -48,6 +48,12 @@ all_examples = [
+ 	'vmdq', 'vmdq_dcb',
+ ]
+ 
++# on install, skip copying all meson.build files
++ex_file_excludes = ['meson.build']
++foreach ex:all_examples
++	ex_file_excludes += [ex + '/meson.build']
++endforeach
++
+ if get_option('examples') == ''
+ 	subdir_done()
+ endif

Added: head/net/dpdk/files/patch-meson.build
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/dpdk/files/patch-meson.build	Fri Mar 26 03:04:58 2021	(r569240)
@@ -0,0 +1,11 @@
+--- meson.build
++++ meson.build
+@@ -61,7 +61,7 @@ subdir('doc')
+ subdir('examples')
+ install_subdir('examples',
+ 	install_dir: get_option('datadir') + '/dpdk',
+-	exclude_files: 'meson.build')
++	exclude_files: ex_file_excludes)
+ 
+ # build kernel modules if enabled
+ if get_option('enable_kmods')

Modified: head/net/dpdk/pkg-plist
==============================================================================
--- head/net/dpdk/pkg-plist	Fri Mar 26 02:05:33 2021	(r569239)
+++ head/net/dpdk/pkg-plist	Fri Mar 26 03:04:58 2021	(r569240)
@@ -82,6 +82,8 @@ include/rte_crypto_asym.h
 include/rte_crypto_sym.h
 include/rte_cryptodev.h
 include/rte_cryptodev_pmd.h
+include/rte_cryptodev_scheduler.h
+include/rte_cryptodev_scheduler_operations.h
 include/rte_cycles.h
 include/rte_debug.h
 include/rte_dev.h
@@ -165,6 +167,7 @@ include/rte_mbuf_core.h
 include/rte_mbuf_dyn.h
 include/rte_mbuf_pool_ops.h
 include/rte_mbuf_ptype.h
+include/rte_mcslock.h
 include/rte_member.h
 include/rte_memcpy.h
 include/rte_memory.h
@@ -252,6 +255,7 @@ include/rte_telemetry.h
 include/rte_telemetry_internal.h
 include/rte_telemetry_parser.h
 include/rte_thash.h
+include/rte_ticketlock.h
 include/rte_time.h
 include/rte_timer.h
 include/rte_tm.h
@@ -263,11 +267,17 @@ include/rte_version.h
 include/rte_vfio.h
 include/rte_vmbus_reg.h
 include/rte_vxlan.h
+%%EXAMPLES%%%%DATADIR%%/examples/Makefile
 %%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/bpf/README
+%%EXAMPLES%%%%DATADIR%%/examples/bpf/dummy.c
+%%EXAMPLES%%%%DATADIR%%/examples/bpf/t1.c
+%%EXAMPLES%%%%DATADIR%%/examples/bpf/t2.c
+%%EXAMPLES%%%%DATADIR%%/examples/bpf/t3.c
 %%EXAMPLES%%%%DATADIR%%/examples/cmdline/Makefile
 %%EXAMPLES%%%%DATADIR%%/examples/cmdline/commands.c
 %%EXAMPLES%%%%DATADIR%%/examples/cmdline/commands.h
@@ -308,18 +318,8 @@ include/rte_vxlan.h
 %%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
@@ -474,9 +474,6 @@ include/rte_vxlan.h
 %%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
@@ -497,24 +494,65 @@ include/rte_vxlan.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/multi_process/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_client/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_client/client.c
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/args.c
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/args.h
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/init.c
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/init.h
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/shared/common.h
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/hotplug_mp/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/hotplug_mp/commands.c
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/hotplug_mp/commands.h
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/hotplug_mp/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/simple_mp/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/simple_mp/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/simple_mp/mp_commands.c
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/simple_mp/mp_commands.h
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/symmetric_mp/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/multi_process/symmetric_mp/main.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/performance-thread/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/arch/arm64/ctx.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/arch/arm64/ctx.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/arch/arm64/stack.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/arch/x86/ctx.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/arch/x86/ctx.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/arch/x86/stack.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/common.mk
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_api.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_cond.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_cond.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_diag.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_diag.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_diag_api.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_int.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_mutex.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_mutex.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_objcache.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_pool.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_queue.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_sched.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_sched.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_timer.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_tls.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/common/lthread_tls.h
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/l3fwd-thread/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/l3fwd-thread/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/l3fwd-thread/test.sh
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/pthread_shim/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/pthread_shim/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/pthread_shim/pthread_shim.c
+%%EXAMPLES%%%%DATADIR%%/examples/performance-thread/pthread_shim/pthread_shim.h
 %%EXAMPLES%%%%DATADIR%%/examples/ptpclient/Makefile
 %%EXAMPLES%%%%DATADIR%%/examples/ptpclient/ptpclient.c
 %%EXAMPLES%%%%DATADIR%%/examples/qos_meter/Makefile
@@ -536,22 +574,20 @@ include/rte_vxlan.h
 %%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/server_node_efd/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/node/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/node/node.c
+%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/Makefile
+%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/args.c
+%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/args.h
+%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/init.c
+%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/init.h
+%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/main.c
+%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/shared/common.h
 %%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
@@ -582,7 +618,6 @@ include/rte_vxlan.h
 %%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
@@ -683,6 +718,8 @@ lib/dpdk/pmds-20.0/librte_pmd_octeontx_event.so
 lib/dpdk/pmds-20.0/librte_pmd_octeontx_event.so.20.0
 lib/dpdk/pmds-20.0/librte_pmd_opdl_event.so
 lib/dpdk/pmds-20.0/librte_pmd_opdl_event.so.20.0
+lib/dpdk/pmds-20.0/librte_pmd_pcap.so
+lib/dpdk/pmds-20.0/librte_pmd_pcap.so.20.0
 lib/dpdk/pmds-20.0/librte_pmd_qat.so
 lib/dpdk/pmds-20.0/librte_pmd_qat.so.20.0
 lib/dpdk/pmds-20.0/librte_pmd_qede.so
@@ -935,6 +972,9 @@ lib/librte_pmd_octeontx_event.so.20.0
 lib/librte_pmd_opdl_event.a
 lib/librte_pmd_opdl_event.so
 lib/librte_pmd_opdl_event.so.20.0
+lib/librte_pmd_pcap.a
+lib/librte_pmd_pcap.so
+lib/librte_pmd_pcap.so.20.0
 lib/librte_pmd_qat.a
 lib/librte_pmd_qat.so
 lib/librte_pmd_qat.so.20.0
@@ -1016,4 +1056,5 @@ lib/librte_table.so.20.0
 lib/librte_timer.a
 lib/librte_timer.so
 lib/librte_timer.so.20.0
+libdata/pkgconfig/libdpdk-libs.pc
 libdata/pkgconfig/libdpdk.pc


More information about the svn-ports-head mailing list