View | Details | Raw Unified | Return to bug 272133 | Differences between
and this patch

Collapse All | Expand All

(-)b/net/dpdk-22.11/Makefile (+54 lines)
Added Link Here
1
PORTNAME=	dpdk
2
DISTVERSION=	22.11.2
3
CATEGORIES=	net
4
MASTER_SITES=	http://fast.dpdk.org/rel/
5
PKGNAMESUFFIX=	22.11
6
7
MAINTAINER=	bruce.richardson@intel.com
8
COMMENT=	DPDK: Software libraries for packet processing
9
WWW=		https://dpdk.org/
10
11
LICENSE=	BSD3CLAUSE
12
LICENSE_FILE=	${WRKSRC}/license/README
13
14
ONLY_FOR_ARCHS=	amd64
15
ONLY_FOR_ARCHS_REASON=	only tested on 64-bit x86 hardware
16
17
BUILD_DEPENDS=	objdump:devel/binutils \
18
		${PYTHON_PKGNAMEPREFIX}pyelftools>0:devel/py-pyelftools@${PY_FLAVOR}
19
20
LIB_DEPENDS=	libelf.so:devel/elfutils \
21
		libjansson.so:devel/jansson
22
23
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pyelftools>0:devel/py-pyelftools@${PY_FLAVOR}
24
25
USES=		kmod meson pkgconfig:both python shebangfix ssl tar:xz
26
USE_LDCONFIG=	yes
27
SHEBANG_FILES=	examples/ipsec-secgw/test/pkttest.py \
28
		examples/ipsec-secgw/test/pkttest.sh \
29
		examples/ipsec-secgw/test/run_test.sh \
30
		examples/ipsec-secgw/test/trs_ipv6opts.py \
31
		examples/ipsec-secgw/test/tun_null_header_reconstruct.py \
32
		examples/pipeline/examples/vxlan_table.py \
33
		usertools/dpdk-devbind.py usertools/dpdk-hugepages.py \
34
		usertools/dpdk-pmdinfo.py usertools/dpdk-telemetry-client.py \
35
		usertools/dpdk-telemetry.py
36
		
37
MESON_ARGS=	-Ddefault_library=shared \
38
		-Denable_kmods=true \
39
		-Dmachine=default
40
41
WRKSRC=		${WRKDIR}/${PORTNAME}-stable-${DISTVERSION}
42
43
OPTIONS_DEFINE=		EXAMPLES TEST TOOLS
44
OPTIONS_DEFAULT=	TOOLS
45
OPTIONS_SUB=		yes
46
47
TEST_DESC=		Build and install automated unit test binary
48
TOOLS_DESC=		Install tool scripts
49
50
EXAMPLES_MESON_ON=	-Dexamples=all
51
TEST_MESON_TRUE=	tests
52
TOOLS_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pyelftools>=0:devel/py-pyelftools@${PY_FLAVOR}
53
54
.include <bsd.port.mk>
(-)b/net/dpdk-22.11/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1687361326
2
SHA256 (dpdk-22.11.2.tar.xz) = af64bdda15087ff8d429894b9ea6cbbbb6ee7a932bdb344f82b0dc366379a2d4
3
SIZE (dpdk-22.11.2.tar.xz) = 15594000
(-)b/net/dpdk-22.11/files/patch-kernel_freebsd_contigmem_contigmem.c (+20 lines)
Added Link Here
1
--- kernel/freebsd/contigmem/contigmem.c.orig	2023-05-20 00:00:38 UTC
2
+++ kernel/freebsd/contigmem/contigmem.c
3
@@ -111,7 +111,7 @@ static int
4
 };
5
 
6
 static int
7
-contigmem_load()
8
+contigmem_load(void)
9
 {
10
 	char index_string[8], description[32];
11
 	int  i, error = 0;
12
@@ -178,7 +178,7 @@ static int
13
 }
14
 
15
 static int
16
-contigmem_unload()
17
+contigmem_unload(void)
18
 {
19
 	int i;
20
 
(-)b/net/dpdk-22.11/files/patch-kernel_freebsd_nic__uio_nic__uio.c (+18 lines)
Added Link Here
1
--- kernel/freebsd/nic_uio/nic_uio.c.orig	2022-07-26 18:52:05 UTC
2
+++ kernel/freebsd/nic_uio/nic_uio.c
3
@@ -78,10 +78,14 @@ struct pci_bdf {
4
 	uint32_t function;
5
 };
6
 
7
+DEFINE_CLASS_0(nic_uio, nic_uio_driver, nic_uio_methods, sizeof(struct nic_uio_softc));
8
+#if __FreeBSD_version >= 1400058
9
+DRIVER_MODULE(nic_uio, pci, nic_uio_driver, nic_uio_modevent, NULL);
10
+#else
11
 static devclass_t nic_uio_devclass;
12
 
13
-DEFINE_CLASS_0(nic_uio, nic_uio_driver, nic_uio_methods, sizeof(struct nic_uio_softc));
14
 DRIVER_MODULE(nic_uio, pci, nic_uio_driver, nic_uio_devclass, nic_uio_modevent, 0);
15
+#endif
16
 
17
 static int
18
 nic_uio_mmap(struct cdev *cdev, vm_ooffset_t offset, vm_paddr_t *paddr,
(-)b/net/dpdk-22.11/pkg-descr (+15 lines)
Added Link Here
1
The Data Plane Development Kit (DPDK)
2
3
The DPDK is a set of software libraries to enable packet processing. It
4
consists of a set of polling mode drivers (PMD) which can be used to pull
5
network packets directly from a Network Interface Card (NIC), as well as
6
other libraries to assist in the processing of those packets. The additional
7
libraries include ones for:
8
* memory and buffer management
9
* packet classification
10
* software rings or FIFOs to allow packet transfer between cores
11
amongst others.
12
13
Applications written using the DPDK run in userspace. The devices used by a
14
DPDK application are removed from kernel control and are instead managed
15
directly by that application.
(-)b/net/dpdk-22.11/pkg-message (+30 lines)
Added Link Here
1
[
2
{ type: install
3
  message: <<EOM
4
The Intel(R) DPDK requires two kernel modules to be loaded in order to run.
5
To load these modules add loading lines to /boot/loader.conf
6
7
	contigmem_load="YES"
8
	nic_uio_load="YES"
9
10
The modules each take a number of parameters. These should be set in loader.conf
11
before the above two lines to load the module.
12
13
* The "contigmem" module is used to reserve contiguous blocks of physical memory
14
  for packet buffer use. It takes parameters for the number and size of blocks
15
  to be reserved. An example is below, reserving a single 1G block:
16
17
	hw.contigmem.num_buffers=1
18
	hw.contigmem.buffer_size=1073741824
19
20
* The "nic_uio" module is used to expose the network card (NIC) hardware
21
  directly to userspace for use with the Intel(R) DPDK. If the NIC ports to be
22
  used are in use by an existing driver, the nic_uio module can unbind the port
23
  from its existing driver when requested to do so. This is done by passing the
24
  relevant PCI bus, device and function settings to the driver as parameters.
25
  For example:
26
27
	hw.nic_uio.bdfs="2:0:0,2:0:1"
28
EOM
29
}
30
]
(-)b/net/dpdk-22.11/pkg-plist (+1349 lines)
Added Link Here
1
/%%KMODDIR%%/contigmem.ko
2
/%%KMODDIR%%/nic_uio.ko
3
%%TOOLS%%bin/dpdk-devbind.py
4
%%TOOLS%%bin/dpdk-dumpcap
5
%%TOOLS%%bin/dpdk-hugepages.py
6
%%TOOLS%%bin/dpdk-pdump
7
%%TOOLS%%bin/dpdk-pmdinfo.py
8
%%TOOLS%%bin/dpdk-proc-info
9
%%TOOLS%%bin/dpdk-telemetry.py
10
%%TESTS%%bin/dpdk-test
11
bin/dpdk-test-acl
12
bin/dpdk-test-bbdev
13
bin/dpdk-test-cmdline
14
bin/dpdk-test-compress-perf
15
bin/dpdk-test-crypto-perf
16
bin/dpdk-test-eventdev
17
bin/dpdk-test-fib
18
bin/dpdk-test-flow-perf
19
bin/dpdk-test-gpudev
20
bin/dpdk-test-pipeline
21
bin/dpdk-test-regex
22
bin/dpdk-test-sad
23
bin/dpdk-test-security-perf
24
bin/dpdk-testpmd
25
include/bpf_def.h
26
include/cmdline.h
27
include/cmdline_cirbuf.h
28
include/cmdline_parse.h
29
include/cmdline_parse_etheraddr.h
30
include/cmdline_parse_ipaddr.h
31
include/cmdline_parse_num.h
32
include/cmdline_parse_portlist.h
33
include/cmdline_parse_string.h
34
include/cmdline_rdline.h
35
include/cmdline_socket.h
36
include/cmdline_vt100.h
37
include/generic/rte_atomic.h
38
include/generic/rte_byteorder.h
39
include/generic/rte_cpuflags.h
40
include/generic/rte_cycles.h
41
include/generic/rte_io.h
42
include/generic/rte_memcpy.h
43
include/generic/rte_pause.h
44
include/generic/rte_power_intrinsics.h
45
include/generic/rte_prefetch.h
46
include/generic/rte_rwlock.h
47
include/generic/rte_spinlock.h
48
include/generic/rte_vect.h
49
include/rte_acc_cfg.h
50
include/rte_acl.h
51
include/rte_acl_osdep.h
52
include/rte_alarm.h
53
include/rte_approx.h
54
include/rte_arp.h
55
include/rte_atomic.h
56
include/rte_atomic_32.h
57
include/rte_atomic_64.h
58
include/rte_bbdev.h
59
include/rte_bbdev_op.h
60
include/rte_bbdev_pmd.h
61
include/rte_bitmap.h
62
include/rte_bitops.h
63
include/rte_bitrate.h
64
include/rte_bpf.h
65
include/rte_bpf_ethdev.h
66
include/rte_branch_prediction.h
67
include/rte_build_config.h
68
include/rte_bus.h
69
include/rte_bus_pci.h
70
include/rte_bus_vdev.h
71
include/rte_byteorder.h
72
include/rte_byteorder_32.h
73
include/rte_byteorder_64.h
74
include/rte_cfgfile.h
75
include/rte_class.h
76
include/rte_cman.h
77
include/rte_common.h
78
include/rte_comp.h
79
include/rte_compat.h
80
include/rte_compressdev.h
81
include/rte_config.h
82
include/rte_cpuflags.h
83
include/rte_crc_arm64.h
84
include/rte_crc_generic.h
85
include/rte_crc_sw.h
86
include/rte_crc_x86.h
87
include/rte_crypto.h
88
include/rte_crypto_asym.h
89
include/rte_crypto_sym.h
90
include/rte_cryptodev.h
91
include/rte_cryptodev_core.h
92
include/rte_cryptodev_scheduler.h
93
include/rte_cryptodev_scheduler_operations.h
94
include/rte_cryptodev_trace.h
95
include/rte_cryptodev_trace_fp.h
96
include/rte_cycles.h
97
include/rte_debug.h
98
include/rte_dev.h
99
include/rte_dev_info.h
100
include/rte_devargs.h
101
include/rte_distributor.h
102
include/rte_dmadev.h
103
include/rte_dmadev_core.h
104
include/rte_eal.h
105
include/rte_eal_memconfig.h
106
include/rte_eal_trace.h
107
include/rte_ecpri.h
108
include/rte_efd.h
109
include/rte_epoll.h
110
include/rte_errno.h
111
include/rte_esp.h
112
include/rte_eth_bond.h
113
include/rte_eth_bond_8023ad.h
114
include/rte_eth_ctrl.h
115
include/rte_eth_ring.h
116
include/rte_ethdev.h
117
include/rte_ethdev_core.h
118
include/rte_ethdev_trace.h
119
include/rte_ethdev_trace_fp.h
120
include/rte_ether.h
121
include/rte_event_crypto_adapter.h
122
include/rte_event_eth_rx_adapter.h
123
include/rte_event_eth_tx_adapter.h
124
include/rte_event_ring.h
125
include/rte_event_timer_adapter.h
126
include/rte_eventdev.h
127
include/rte_eventdev_core.h
128
include/rte_eventdev_trace_fp.h
129
include/rte_fbarray.h
130
include/rte_fbk_hash.h
131
include/rte_fib.h
132
include/rte_fib6.h
133
include/rte_flow.h
134
include/rte_flow_driver.h
135
include/rte_geneve.h
136
include/rte_gpudev.h
137
include/rte_graph.h
138
include/rte_graph_worker.h
139
include/rte_gre.h
140
include/rte_gro.h
141
include/rte_gso.h
142
include/rte_gtp.h
143
include/rte_hash.h
144
include/rte_hash_crc.h
145
include/rte_hexdump.h
146
include/rte_higig.h
147
include/rte_hypervisor.h
148
include/rte_icmp.h
149
include/rte_interrupts.h
150
include/rte_io.h
151
include/rte_ip.h
152
include/rte_ip_frag.h
153
include/rte_ipsec.h
154
include/rte_ipsec_group.h
155
include/rte_ipsec_sa.h
156
include/rte_ipsec_sad.h
157
include/rte_jhash.h
158
include/rte_jobstats.h
159
include/rte_keepalive.h
160
include/rte_kvargs.h
161
include/rte_l2tpv2.h
162
include/rte_latencystats.h
163
include/rte_launch.h
164
include/rte_lcore.h
165
include/rte_log.h
166
include/rte_lpm.h
167
include/rte_lpm6.h
168
include/rte_lpm_altivec.h
169
include/rte_lpm_neon.h
170
include/rte_lpm_scalar.h
171
include/rte_lpm_sse.h
172
include/rte_lpm_sve.h
173
include/rte_lru.h
174
include/rte_lru_arm64.h
175
include/rte_lru_x86.h
176
include/rte_macsec.h
177
include/rte_malloc.h
178
include/rte_mbuf.h
179
include/rte_mbuf_core.h
180
include/rte_mbuf_dyn.h
181
include/rte_mbuf_pool_ops.h
182
include/rte_mbuf_ptype.h
183
include/rte_mcslock.h
184
include/rte_member.h
185
include/rte_memcpy.h
186
include/rte_memory.h
187
include/rte_mempool.h
188
include/rte_mempool_trace.h
189
include/rte_mempool_trace_fp.h
190
include/rte_memzone.h
191
include/rte_meter.h
192
include/rte_metrics.h
193
include/rte_metrics_telemetry.h
194
include/rte_mpls.h
195
include/rte_mtr.h
196
include/rte_mtr_driver.h
197
include/rte_net.h
198
include/rte_net_crc.h
199
include/rte_node_eth_api.h
200
include/rte_node_ip4_api.h
201
include/rte_os.h
202
include/rte_pause.h
203
include/rte_pcapng.h
204
include/rte_pci.h
205
include/rte_pci_dev_feature_defs.h
206
include/rte_pci_dev_features.h
207
include/rte_pdump.h
208
include/rte_per_lcore.h
209
include/rte_pflock.h
210
include/rte_pie.h
211
include/rte_pipeline.h
212
include/rte_pmd_bnxt.h
213
include/rte_pmd_fpga_5gnr_fec.h
214
include/rte_pmd_i40e.h
215
include/rte_pmd_iavf.h
216
include/rte_pmd_ixgbe.h
217
include/rte_pmd_ntb.h
218
include/rte_pmd_txgbe.h
219
include/rte_port.h
220
include/rte_port_ethdev.h
221
include/rte_port_eventdev.h
222
include/rte_port_fd.h
223
include/rte_port_frag.h
224
include/rte_port_in_action.h
225
include/rte_port_ras.h
226
include/rte_port_ring.h
227
include/rte_port_sched.h
228
include/rte_port_source_sink.h
229
include/rte_port_sym_crypto.h
230
include/rte_power_intrinsics.h
231
include/rte_ppp.h
232
include/rte_prefetch.h
233
include/rte_random.h
234
include/rte_rawdev.h
235
include/rte_rawdev_pmd.h
236
include/rte_rcu_qsbr.h
237
include/rte_reciprocal.h
238
include/rte_red.h
239
include/rte_regexdev.h
240
include/rte_regexdev_core.h
241
include/rte_regexdev_driver.h
242
include/rte_reorder.h
243
include/rte_rib.h
244
include/rte_rib6.h
245
include/rte_ring.h
246
include/rte_ring_c11_pvt.h
247
include/rte_ring_core.h
248
include/rte_ring_elem.h
249
include/rte_ring_elem_pvt.h
250
include/rte_ring_generic_pvt.h
251
include/rte_ring_hts.h
252
include/rte_ring_hts_elem_pvt.h
253
include/rte_ring_peek.h
254
include/rte_ring_peek_elem_pvt.h
255
include/rte_ring_peek_zc.h
256
include/rte_ring_rts.h
257
include/rte_ring_rts_elem_pvt.h
258
include/rte_rtm.h
259
include/rte_rwlock.h
260
include/rte_sched.h
261
include/rte_sched_common.h
262
include/rte_sctp.h
263
include/rte_security.h
264
include/rte_security_driver.h
265
include/rte_seqcount.h
266
include/rte_seqlock.h
267
include/rte_service.h
268
include/rte_service_component.h
269
include/rte_spinlock.h
270
include/rte_stack.h
271
include/rte_stack_lf.h
272
include/rte_stack_lf_c11.h
273
include/rte_stack_lf_generic.h
274
include/rte_stack_lf_stubs.h
275
include/rte_stack_std.h
276
include/rte_string_fns.h
277
include/rte_swx_ctl.h
278
include/rte_swx_extern.h
279
include/rte_swx_hash_func.h
280
include/rte_swx_pipeline.h
281
include/rte_swx_port.h
282
include/rte_swx_port_ethdev.h
283
include/rte_swx_port_fd.h
284
include/rte_swx_port_ring.h
285
include/rte_swx_port_source_sink.h
286
include/rte_swx_table.h
287
include/rte_swx_table_em.h
288
include/rte_swx_table_learner.h
289
include/rte_swx_table_selector.h
290
include/rte_swx_table_wm.h
291
include/rte_table.h
292
include/rte_table_acl.h
293
include/rte_table_action.h
294
include/rte_table_array.h
295
include/rte_table_hash.h
296
include/rte_table_hash_cuckoo.h
297
include/rte_table_hash_func.h
298
include/rte_table_hash_func_arm64.h
299
include/rte_table_lpm.h
300
include/rte_table_lpm_ipv6.h
301
include/rte_table_stub.h
302
include/rte_tailq.h
303
include/rte_tcp.h
304
include/rte_telemetry.h
305
include/rte_thash.h
306
include/rte_thash_gfni.h
307
include/rte_thash_x86_gfni.h
308
include/rte_thread.h
309
include/rte_ticketlock.h
310
include/rte_time.h
311
include/rte_timer.h
312
include/rte_tm.h
313
include/rte_tm_driver.h
314
include/rte_trace.h
315
include/rte_trace_point.h
316
include/rte_trace_point_register.h
317
include/rte_udp.h
318
include/rte_uuid.h
319
include/rte_vect.h
320
include/rte_version.h
321
include/rte_vfio.h
322
include/rte_vxlan.h
323
lib/dpdk/pmds-23.0/librte_baseband_acc.so
324
lib/dpdk/pmds-23.0/librte_baseband_acc.so.23
325
lib/dpdk/pmds-23.0/librte_baseband_acc.so.23.0
326
lib/dpdk/pmds-23.0/librte_baseband_fpga_5gnr_fec.so
327
lib/dpdk/pmds-23.0/librte_baseband_fpga_5gnr_fec.so.23
328
lib/dpdk/pmds-23.0/librte_baseband_fpga_5gnr_fec.so.23.0
329
lib/dpdk/pmds-23.0/librte_baseband_fpga_lte_fec.so
330
lib/dpdk/pmds-23.0/librte_baseband_fpga_lte_fec.so.23
331
lib/dpdk/pmds-23.0/librte_baseband_fpga_lte_fec.so.23.0
332
lib/dpdk/pmds-23.0/librte_baseband_la12xx.so
333
lib/dpdk/pmds-23.0/librte_baseband_la12xx.so.23
334
lib/dpdk/pmds-23.0/librte_baseband_la12xx.so.23.0
335
lib/dpdk/pmds-23.0/librte_baseband_null.so
336
lib/dpdk/pmds-23.0/librte_baseband_null.so.23
337
lib/dpdk/pmds-23.0/librte_baseband_null.so.23.0
338
lib/dpdk/pmds-23.0/librte_baseband_turbo_sw.so
339
lib/dpdk/pmds-23.0/librte_baseband_turbo_sw.so.23
340
lib/dpdk/pmds-23.0/librte_baseband_turbo_sw.so.23.0
341
lib/dpdk/pmds-23.0/librte_bus_auxiliary.so
342
lib/dpdk/pmds-23.0/librte_bus_auxiliary.so.23
343
lib/dpdk/pmds-23.0/librte_bus_auxiliary.so.23.0
344
lib/dpdk/pmds-23.0/librte_bus_ifpga.so
345
lib/dpdk/pmds-23.0/librte_bus_ifpga.so.23
346
lib/dpdk/pmds-23.0/librte_bus_ifpga.so.23.0
347
lib/dpdk/pmds-23.0/librte_bus_pci.so
348
lib/dpdk/pmds-23.0/librte_bus_pci.so.23
349
lib/dpdk/pmds-23.0/librte_bus_pci.so.23.0
350
lib/dpdk/pmds-23.0/librte_bus_vdev.so
351
lib/dpdk/pmds-23.0/librte_bus_vdev.so.23
352
lib/dpdk/pmds-23.0/librte_bus_vdev.so.23.0
353
lib/dpdk/pmds-23.0/librte_common_cpt.so
354
lib/dpdk/pmds-23.0/librte_common_cpt.so.23
355
lib/dpdk/pmds-23.0/librte_common_cpt.so.23.0
356
lib/dpdk/pmds-23.0/librte_common_iavf.so
357
lib/dpdk/pmds-23.0/librte_common_iavf.so.23
358
lib/dpdk/pmds-23.0/librte_common_iavf.so.23.0
359
lib/dpdk/pmds-23.0/librte_common_idpf.so
360
lib/dpdk/pmds-23.0/librte_common_idpf.so.23
361
lib/dpdk/pmds-23.0/librte_common_idpf.so.23.0
362
lib/dpdk/pmds-23.0/librte_common_qat.so
363
lib/dpdk/pmds-23.0/librte_common_qat.so.23
364
lib/dpdk/pmds-23.0/librte_common_qat.so.23.0
365
lib/dpdk/pmds-23.0/librte_common_sfc_efx.so
366
lib/dpdk/pmds-23.0/librte_common_sfc_efx.so.23
367
lib/dpdk/pmds-23.0/librte_common_sfc_efx.so.23.0
368
lib/dpdk/pmds-23.0/librte_compress_zlib.so
369
lib/dpdk/pmds-23.0/librte_compress_zlib.so.23
370
lib/dpdk/pmds-23.0/librte_compress_zlib.so.23.0
371
lib/dpdk/pmds-23.0/librte_crypto_bcmfs.so
372
lib/dpdk/pmds-23.0/librte_crypto_bcmfs.so.23
373
lib/dpdk/pmds-23.0/librte_crypto_bcmfs.so.23.0
374
lib/dpdk/pmds-23.0/librte_crypto_null.so
375
lib/dpdk/pmds-23.0/librte_crypto_null.so.23
376
lib/dpdk/pmds-23.0/librte_crypto_null.so.23.0
377
lib/dpdk/pmds-23.0/librte_crypto_openssl.so
378
lib/dpdk/pmds-23.0/librte_crypto_openssl.so.23
379
lib/dpdk/pmds-23.0/librte_crypto_openssl.so.23.0
380
lib/dpdk/pmds-23.0/librte_crypto_scheduler.so
381
lib/dpdk/pmds-23.0/librte_crypto_scheduler.so.23
382
lib/dpdk/pmds-23.0/librte_crypto_scheduler.so.23.0
383
lib/dpdk/pmds-23.0/librte_crypto_virtio.so
384
lib/dpdk/pmds-23.0/librte_crypto_virtio.so.23
385
lib/dpdk/pmds-23.0/librte_crypto_virtio.so.23.0
386
lib/dpdk/pmds-23.0/librte_dma_idxd.so
387
lib/dpdk/pmds-23.0/librte_dma_idxd.so.23
388
lib/dpdk/pmds-23.0/librte_dma_idxd.so.23.0
389
lib/dpdk/pmds-23.0/librte_dma_ioat.so
390
lib/dpdk/pmds-23.0/librte_dma_ioat.so.23
391
lib/dpdk/pmds-23.0/librte_dma_ioat.so.23.0
392
lib/dpdk/pmds-23.0/librte_dma_skeleton.so
393
lib/dpdk/pmds-23.0/librte_dma_skeleton.so.23
394
lib/dpdk/pmds-23.0/librte_dma_skeleton.so.23.0
395
lib/dpdk/pmds-23.0/librte_event_dsw.so
396
lib/dpdk/pmds-23.0/librte_event_dsw.so.23
397
lib/dpdk/pmds-23.0/librte_event_dsw.so.23.0
398
lib/dpdk/pmds-23.0/librte_event_opdl.so
399
lib/dpdk/pmds-23.0/librte_event_opdl.so.23
400
lib/dpdk/pmds-23.0/librte_event_opdl.so.23.0
401
lib/dpdk/pmds-23.0/librte_event_skeleton.so
402
lib/dpdk/pmds-23.0/librte_event_skeleton.so.23
403
lib/dpdk/pmds-23.0/librte_event_skeleton.so.23.0
404
lib/dpdk/pmds-23.0/librte_event_sw.so
405
lib/dpdk/pmds-23.0/librte_event_sw.so.23
406
lib/dpdk/pmds-23.0/librte_event_sw.so.23.0
407
lib/dpdk/pmds-23.0/librte_mempool_bucket.so
408
lib/dpdk/pmds-23.0/librte_mempool_bucket.so.23
409
lib/dpdk/pmds-23.0/librte_mempool_bucket.so.23.0
410
lib/dpdk/pmds-23.0/librte_mempool_ring.so
411
lib/dpdk/pmds-23.0/librte_mempool_ring.so.23
412
lib/dpdk/pmds-23.0/librte_mempool_ring.so.23.0
413
lib/dpdk/pmds-23.0/librte_mempool_stack.so
414
lib/dpdk/pmds-23.0/librte_mempool_stack.so.23
415
lib/dpdk/pmds-23.0/librte_mempool_stack.so.23.0
416
lib/dpdk/pmds-23.0/librte_net_ark.so
417
lib/dpdk/pmds-23.0/librte_net_ark.so.23
418
lib/dpdk/pmds-23.0/librte_net_ark.so.23.0
419
lib/dpdk/pmds-23.0/librte_net_atlantic.so
420
lib/dpdk/pmds-23.0/librte_net_atlantic.so.23
421
lib/dpdk/pmds-23.0/librte_net_atlantic.so.23.0
422
lib/dpdk/pmds-23.0/librte_net_bnx2x.so
423
lib/dpdk/pmds-23.0/librte_net_bnx2x.so.23
424
lib/dpdk/pmds-23.0/librte_net_bnx2x.so.23.0
425
lib/dpdk/pmds-23.0/librte_net_bnxt.so
426
lib/dpdk/pmds-23.0/librte_net_bnxt.so.23
427
lib/dpdk/pmds-23.0/librte_net_bnxt.so.23.0
428
lib/dpdk/pmds-23.0/librte_net_bond.so
429
lib/dpdk/pmds-23.0/librte_net_bond.so.23
430
lib/dpdk/pmds-23.0/librte_net_bond.so.23.0
431
lib/dpdk/pmds-23.0/librte_net_cxgbe.so
432
lib/dpdk/pmds-23.0/librte_net_cxgbe.so.23
433
lib/dpdk/pmds-23.0/librte_net_cxgbe.so.23.0
434
lib/dpdk/pmds-23.0/librte_net_e1000.so
435
lib/dpdk/pmds-23.0/librte_net_e1000.so.23
436
lib/dpdk/pmds-23.0/librte_net_e1000.so.23.0
437
lib/dpdk/pmds-23.0/librte_net_ena.so
438
lib/dpdk/pmds-23.0/librte_net_ena.so.23
439
lib/dpdk/pmds-23.0/librte_net_ena.so.23.0
440
lib/dpdk/pmds-23.0/librte_net_enic.so
441
lib/dpdk/pmds-23.0/librte_net_enic.so.23
442
lib/dpdk/pmds-23.0/librte_net_enic.so.23.0
443
lib/dpdk/pmds-23.0/librte_net_failsafe.so
444
lib/dpdk/pmds-23.0/librte_net_failsafe.so.23
445
lib/dpdk/pmds-23.0/librte_net_failsafe.so.23.0
446
lib/dpdk/pmds-23.0/librte_net_fm10k.so
447
lib/dpdk/pmds-23.0/librte_net_fm10k.so.23
448
lib/dpdk/pmds-23.0/librte_net_fm10k.so.23.0
449
lib/dpdk/pmds-23.0/librte_net_gve.so
450
lib/dpdk/pmds-23.0/librte_net_gve.so.23
451
lib/dpdk/pmds-23.0/librte_net_gve.so.23.0
452
lib/dpdk/pmds-23.0/librte_net_hinic.so
453
lib/dpdk/pmds-23.0/librte_net_hinic.so.23
454
lib/dpdk/pmds-23.0/librte_net_hinic.so.23.0
455
lib/dpdk/pmds-23.0/librte_net_i40e.so
456
lib/dpdk/pmds-23.0/librte_net_i40e.so.23
457
lib/dpdk/pmds-23.0/librte_net_i40e.so.23.0
458
lib/dpdk/pmds-23.0/librte_net_iavf.so
459
lib/dpdk/pmds-23.0/librte_net_iavf.so.23
460
lib/dpdk/pmds-23.0/librte_net_iavf.so.23.0
461
lib/dpdk/pmds-23.0/librte_net_ice.so
462
lib/dpdk/pmds-23.0/librte_net_ice.so.23
463
lib/dpdk/pmds-23.0/librte_net_ice.so.23.0
464
lib/dpdk/pmds-23.0/librte_net_idpf.so
465
lib/dpdk/pmds-23.0/librte_net_idpf.so.23
466
lib/dpdk/pmds-23.0/librte_net_idpf.so.23.0
467
lib/dpdk/pmds-23.0/librte_net_igc.so
468
lib/dpdk/pmds-23.0/librte_net_igc.so.23
469
lib/dpdk/pmds-23.0/librte_net_igc.so.23.0
470
lib/dpdk/pmds-23.0/librte_net_ionic.so
471
lib/dpdk/pmds-23.0/librte_net_ionic.so.23
472
lib/dpdk/pmds-23.0/librte_net_ionic.so.23.0
473
lib/dpdk/pmds-23.0/librte_net_ixgbe.so
474
lib/dpdk/pmds-23.0/librte_net_ixgbe.so.23
475
lib/dpdk/pmds-23.0/librte_net_ixgbe.so.23.0
476
lib/dpdk/pmds-23.0/librte_net_liquidio.so
477
lib/dpdk/pmds-23.0/librte_net_liquidio.so.23
478
lib/dpdk/pmds-23.0/librte_net_liquidio.so.23.0
479
lib/dpdk/pmds-23.0/librte_net_ngbe.so
480
lib/dpdk/pmds-23.0/librte_net_ngbe.so.23
481
lib/dpdk/pmds-23.0/librte_net_ngbe.so.23.0
482
lib/dpdk/pmds-23.0/librte_net_null.so
483
lib/dpdk/pmds-23.0/librte_net_null.so.23
484
lib/dpdk/pmds-23.0/librte_net_null.so.23.0
485
lib/dpdk/pmds-23.0/librte_net_octeon_ep.so
486
lib/dpdk/pmds-23.0/librte_net_octeon_ep.so.23
487
lib/dpdk/pmds-23.0/librte_net_octeon_ep.so.23.0
488
lib/dpdk/pmds-23.0/librte_net_pcap.so
489
lib/dpdk/pmds-23.0/librte_net_pcap.so.23
490
lib/dpdk/pmds-23.0/librte_net_pcap.so.23.0
491
lib/dpdk/pmds-23.0/librte_net_qede.so
492
lib/dpdk/pmds-23.0/librte_net_qede.so.23
493
lib/dpdk/pmds-23.0/librte_net_qede.so.23.0
494
lib/dpdk/pmds-23.0/librte_net_ring.so
495
lib/dpdk/pmds-23.0/librte_net_ring.so.23
496
lib/dpdk/pmds-23.0/librte_net_ring.so.23.0
497
lib/dpdk/pmds-23.0/librte_net_sfc.so
498
lib/dpdk/pmds-23.0/librte_net_sfc.so.23
499
lib/dpdk/pmds-23.0/librte_net_sfc.so.23.0
500
lib/dpdk/pmds-23.0/librte_net_txgbe.so
501
lib/dpdk/pmds-23.0/librte_net_txgbe.so.23
502
lib/dpdk/pmds-23.0/librte_net_txgbe.so.23.0
503
lib/dpdk/pmds-23.0/librte_net_virtio.so
504
lib/dpdk/pmds-23.0/librte_net_virtio.so.23
505
lib/dpdk/pmds-23.0/librte_net_virtio.so.23.0
506
lib/dpdk/pmds-23.0/librte_net_vmxnet3.so
507
lib/dpdk/pmds-23.0/librte_net_vmxnet3.so.23
508
lib/dpdk/pmds-23.0/librte_net_vmxnet3.so.23.0
509
lib/dpdk/pmds-23.0/librte_raw_ntb.so
510
lib/dpdk/pmds-23.0/librte_raw_ntb.so.23
511
lib/dpdk/pmds-23.0/librte_raw_ntb.so.23.0
512
lib/dpdk/pmds-23.0/librte_raw_skeleton.so
513
lib/dpdk/pmds-23.0/librte_raw_skeleton.so.23
514
lib/dpdk/pmds-23.0/librte_raw_skeleton.so.23.0
515
lib/librte_acl.a
516
lib/librte_acl.so
517
lib/librte_acl.so.23
518
lib/librte_acl.so.23.0
519
lib/librte_baseband_acc.a
520
lib/librte_baseband_acc.so
521
lib/librte_baseband_acc.so.23
522
lib/librte_baseband_acc.so.23.0
523
lib/librte_baseband_fpga_5gnr_fec.a
524
lib/librte_baseband_fpga_5gnr_fec.so
525
lib/librte_baseband_fpga_5gnr_fec.so.23
526
lib/librte_baseband_fpga_5gnr_fec.so.23.0
527
lib/librte_baseband_fpga_lte_fec.a
528
lib/librte_baseband_fpga_lte_fec.so
529
lib/librte_baseband_fpga_lte_fec.so.23
530
lib/librte_baseband_fpga_lte_fec.so.23.0
531
lib/librte_baseband_la12xx.a
532
lib/librte_baseband_la12xx.so
533
lib/librte_baseband_la12xx.so.23
534
lib/librte_baseband_la12xx.so.23.0
535
lib/librte_baseband_null.a
536
lib/librte_baseband_null.so
537
lib/librte_baseband_null.so.23
538
lib/librte_baseband_null.so.23.0
539
lib/librte_baseband_turbo_sw.a
540
lib/librte_baseband_turbo_sw.so
541
lib/librte_baseband_turbo_sw.so.23
542
lib/librte_baseband_turbo_sw.so.23.0
543
lib/librte_bbdev.a
544
lib/librte_bbdev.so
545
lib/librte_bbdev.so.23
546
lib/librte_bbdev.so.23.0
547
lib/librte_bitratestats.a
548
lib/librte_bitratestats.so
549
lib/librte_bitratestats.so.23
550
lib/librte_bitratestats.so.23.0
551
lib/librte_bpf.a
552
lib/librte_bpf.so
553
lib/librte_bpf.so.23
554
lib/librte_bpf.so.23.0
555
lib/librte_bus_auxiliary.a
556
lib/librte_bus_auxiliary.so
557
lib/librte_bus_auxiliary.so.23
558
lib/librte_bus_auxiliary.so.23.0
559
lib/librte_bus_ifpga.a
560
lib/librte_bus_ifpga.so
561
lib/librte_bus_ifpga.so.23
562
lib/librte_bus_ifpga.so.23.0
563
lib/librte_bus_pci.a
564
lib/librte_bus_pci.so
565
lib/librte_bus_pci.so.23
566
lib/librte_bus_pci.so.23.0
567
lib/librte_bus_vdev.a
568
lib/librte_bus_vdev.so
569
lib/librte_bus_vdev.so.23
570
lib/librte_bus_vdev.so.23.0
571
lib/librte_cfgfile.a
572
lib/librte_cfgfile.so
573
lib/librte_cfgfile.so.23
574
lib/librte_cfgfile.so.23.0
575
lib/librte_cmdline.a
576
lib/librte_cmdline.so
577
lib/librte_cmdline.so.23
578
lib/librte_cmdline.so.23.0
579
lib/librte_common_cpt.a
580
lib/librte_common_cpt.so
581
lib/librte_common_cpt.so.23
582
lib/librte_common_cpt.so.23.0
583
lib/librte_common_iavf.a
584
lib/librte_common_iavf.so
585
lib/librte_common_iavf.so.23
586
lib/librte_common_iavf.so.23.0
587
lib/librte_common_idpf.a
588
lib/librte_common_idpf.so
589
lib/librte_common_idpf.so.23
590
lib/librte_common_idpf.so.23.0
591
lib/librte_common_qat.a
592
lib/librte_common_qat.so
593
lib/librte_common_qat.so.23
594
lib/librte_common_qat.so.23.0
595
lib/librte_common_sfc_efx.a
596
lib/librte_common_sfc_efx.so
597
lib/librte_common_sfc_efx.so.23
598
lib/librte_common_sfc_efx.so.23.0
599
lib/librte_compress_zlib.a
600
lib/librte_compress_zlib.so
601
lib/librte_compress_zlib.so.23
602
lib/librte_compress_zlib.so.23.0
603
lib/librte_compressdev.a
604
lib/librte_compressdev.so
605
lib/librte_compressdev.so.23
606
lib/librte_compressdev.so.23.0
607
lib/librte_crypto_bcmfs.a
608
lib/librte_crypto_bcmfs.so
609
lib/librte_crypto_bcmfs.so.23
610
lib/librte_crypto_bcmfs.so.23.0
611
lib/librte_crypto_null.a
612
lib/librte_crypto_null.so
613
lib/librte_crypto_null.so.23
614
lib/librte_crypto_null.so.23.0
615
lib/librte_crypto_openssl.a
616
lib/librte_crypto_openssl.so
617
lib/librte_crypto_openssl.so.23
618
lib/librte_crypto_openssl.so.23.0
619
lib/librte_crypto_scheduler.a
620
lib/librte_crypto_scheduler.so
621
lib/librte_crypto_scheduler.so.23
622
lib/librte_crypto_scheduler.so.23.0
623
lib/librte_crypto_virtio.a
624
lib/librte_crypto_virtio.so
625
lib/librte_crypto_virtio.so.23
626
lib/librte_crypto_virtio.so.23.0
627
lib/librte_cryptodev.a
628
lib/librte_cryptodev.so
629
lib/librte_cryptodev.so.23
630
lib/librte_cryptodev.so.23.0
631
lib/librte_distributor.a
632
lib/librte_distributor.so
633
lib/librte_distributor.so.23
634
lib/librte_distributor.so.23.0
635
lib/librte_dma_idxd.a
636
lib/librte_dma_idxd.so
637
lib/librte_dma_idxd.so.23
638
lib/librte_dma_idxd.so.23.0
639
lib/librte_dma_ioat.a
640
lib/librte_dma_ioat.so
641
lib/librte_dma_ioat.so.23
642
lib/librte_dma_ioat.so.23.0
643
lib/librte_dma_skeleton.a
644
lib/librte_dma_skeleton.so
645
lib/librte_dma_skeleton.so.23
646
lib/librte_dma_skeleton.so.23.0
647
lib/librte_dmadev.a
648
lib/librte_dmadev.so
649
lib/librte_dmadev.so.23
650
lib/librte_dmadev.so.23.0
651
lib/librte_eal.a
652
lib/librte_eal.so
653
lib/librte_eal.so.23
654
lib/librte_eal.so.23.0
655
lib/librte_efd.a
656
lib/librte_efd.so
657
lib/librte_efd.so.23
658
lib/librte_efd.so.23.0
659
lib/librte_ethdev.a
660
lib/librte_ethdev.so
661
lib/librte_ethdev.so.23
662
lib/librte_ethdev.so.23.0
663
lib/librte_event_dsw.a
664
lib/librte_event_dsw.so
665
lib/librte_event_dsw.so.23
666
lib/librte_event_dsw.so.23.0
667
lib/librte_event_opdl.a
668
lib/librte_event_opdl.so
669
lib/librte_event_opdl.so.23
670
lib/librte_event_opdl.so.23.0
671
lib/librte_event_skeleton.a
672
lib/librte_event_skeleton.so
673
lib/librte_event_skeleton.so.23
674
lib/librte_event_skeleton.so.23.0
675
lib/librte_event_sw.a
676
lib/librte_event_sw.so
677
lib/librte_event_sw.so.23
678
lib/librte_event_sw.so.23.0
679
lib/librte_eventdev.a
680
lib/librte_eventdev.so
681
lib/librte_eventdev.so.23
682
lib/librte_eventdev.so.23.0
683
lib/librte_fib.a
684
lib/librte_fib.so
685
lib/librte_fib.so.23
686
lib/librte_fib.so.23.0
687
lib/librte_gpudev.a
688
lib/librte_gpudev.so
689
lib/librte_gpudev.so.23
690
lib/librte_gpudev.so.23.0
691
lib/librte_graph.a
692
lib/librte_graph.so
693
lib/librte_graph.so.23
694
lib/librte_graph.so.23.0
695
lib/librte_gro.a
696
lib/librte_gro.so
697
lib/librte_gro.so.23
698
lib/librte_gro.so.23.0
699
lib/librte_gso.a
700
lib/librte_gso.so
701
lib/librte_gso.so.23
702
lib/librte_gso.so.23.0
703
lib/librte_hash.a
704
lib/librte_hash.so
705
lib/librte_hash.so.23
706
lib/librte_hash.so.23.0
707
lib/librte_ip_frag.a
708
lib/librte_ip_frag.so
709
lib/librte_ip_frag.so.23
710
lib/librte_ip_frag.so.23.0
711
lib/librte_ipsec.a
712
lib/librte_ipsec.so
713
lib/librte_ipsec.so.23
714
lib/librte_ipsec.so.23.0
715
lib/librte_jobstats.a
716
lib/librte_jobstats.so
717
lib/librte_jobstats.so.23
718
lib/librte_jobstats.so.23.0
719
lib/librte_kvargs.a
720
lib/librte_kvargs.so
721
lib/librte_kvargs.so.23
722
lib/librte_kvargs.so.23.0
723
lib/librte_latencystats.a
724
lib/librte_latencystats.so
725
lib/librte_latencystats.so.23
726
lib/librte_latencystats.so.23.0
727
lib/librte_lpm.a
728
lib/librte_lpm.so
729
lib/librte_lpm.so.23
730
lib/librte_lpm.so.23.0
731
lib/librte_mbuf.a
732
lib/librte_mbuf.so
733
lib/librte_mbuf.so.23
734
lib/librte_mbuf.so.23.0
735
lib/librte_member.a
736
lib/librte_member.so
737
lib/librte_member.so.23
738
lib/librte_member.so.23.0
739
lib/librte_mempool.a
740
lib/librte_mempool.so
741
lib/librte_mempool.so.23
742
lib/librte_mempool.so.23.0
743
lib/librte_mempool_bucket.a
744
lib/librte_mempool_bucket.so
745
lib/librte_mempool_bucket.so.23
746
lib/librte_mempool_bucket.so.23.0
747
lib/librte_mempool_ring.a
748
lib/librte_mempool_ring.so
749
lib/librte_mempool_ring.so.23
750
lib/librte_mempool_ring.so.23.0
751
lib/librte_mempool_stack.a
752
lib/librte_mempool_stack.so
753
lib/librte_mempool_stack.so.23
754
lib/librte_mempool_stack.so.23.0
755
lib/librte_meter.a
756
lib/librte_meter.so
757
lib/librte_meter.so.23
758
lib/librte_meter.so.23.0
759
lib/librte_metrics.a
760
lib/librte_metrics.so
761
lib/librte_metrics.so.23
762
lib/librte_metrics.so.23.0
763
lib/librte_net.a
764
lib/librte_net.so
765
lib/librte_net.so.23
766
lib/librte_net.so.23.0
767
lib/librte_net_ark.a
768
lib/librte_net_ark.so
769
lib/librte_net_ark.so.23
770
lib/librte_net_ark.so.23.0
771
lib/librte_net_atlantic.a
772
lib/librte_net_atlantic.so
773
lib/librte_net_atlantic.so.23
774
lib/librte_net_atlantic.so.23.0
775
lib/librte_net_bnx2x.a
776
lib/librte_net_bnx2x.so
777
lib/librte_net_bnx2x.so.23
778
lib/librte_net_bnx2x.so.23.0
779
lib/librte_net_bnxt.a
780
lib/librte_net_bnxt.so
781
lib/librte_net_bnxt.so.23
782
lib/librte_net_bnxt.so.23.0
783
lib/librte_net_bond.a
784
lib/librte_net_bond.so
785
lib/librte_net_bond.so.23
786
lib/librte_net_bond.so.23.0
787
lib/librte_net_cxgbe.a
788
lib/librte_net_cxgbe.so
789
lib/librte_net_cxgbe.so.23
790
lib/librte_net_cxgbe.so.23.0
791
lib/librte_net_e1000.a
792
lib/librte_net_e1000.so
793
lib/librte_net_e1000.so.23
794
lib/librte_net_e1000.so.23.0
795
lib/librte_net_ena.a
796
lib/librte_net_ena.so
797
lib/librte_net_ena.so.23
798
lib/librte_net_ena.so.23.0
799
lib/librte_net_enic.a
800
lib/librte_net_enic.so
801
lib/librte_net_enic.so.23
802
lib/librte_net_enic.so.23.0
803
lib/librte_net_failsafe.a
804
lib/librte_net_failsafe.so
805
lib/librte_net_failsafe.so.23
806
lib/librte_net_failsafe.so.23.0
807
lib/librte_net_fm10k.a
808
lib/librte_net_fm10k.so
809
lib/librte_net_fm10k.so.23
810
lib/librte_net_fm10k.so.23.0
811
lib/librte_net_gve.a
812
lib/librte_net_gve.so
813
lib/librte_net_gve.so.23
814
lib/librte_net_gve.so.23.0
815
lib/librte_net_hinic.a
816
lib/librte_net_hinic.so
817
lib/librte_net_hinic.so.23
818
lib/librte_net_hinic.so.23.0
819
lib/librte_net_i40e.a
820
lib/librte_net_i40e.so
821
lib/librte_net_i40e.so.23
822
lib/librte_net_i40e.so.23.0
823
lib/librte_net_iavf.a
824
lib/librte_net_iavf.so
825
lib/librte_net_iavf.so.23
826
lib/librte_net_iavf.so.23.0
827
lib/librte_net_ice.a
828
lib/librte_net_ice.so
829
lib/librte_net_ice.so.23
830
lib/librte_net_ice.so.23.0
831
lib/librte_net_idpf.a
832
lib/librte_net_idpf.so
833
lib/librte_net_idpf.so.23
834
lib/librte_net_idpf.so.23.0
835
lib/librte_net_igc.a
836
lib/librte_net_igc.so
837
lib/librte_net_igc.so.23
838
lib/librte_net_igc.so.23.0
839
lib/librte_net_ionic.a
840
lib/librte_net_ionic.so
841
lib/librte_net_ionic.so.23
842
lib/librte_net_ionic.so.23.0
843
lib/librte_net_ixgbe.a
844
lib/librte_net_ixgbe.so
845
lib/librte_net_ixgbe.so.23
846
lib/librte_net_ixgbe.so.23.0
847
lib/librte_net_liquidio.a
848
lib/librte_net_liquidio.so
849
lib/librte_net_liquidio.so.23
850
lib/librte_net_liquidio.so.23.0
851
lib/librte_net_ngbe.a
852
lib/librte_net_ngbe.so
853
lib/librte_net_ngbe.so.23
854
lib/librte_net_ngbe.so.23.0
855
lib/librte_net_null.a
856
lib/librte_net_null.so
857
lib/librte_net_null.so.23
858
lib/librte_net_null.so.23.0
859
lib/librte_net_octeon_ep.a
860
lib/librte_net_octeon_ep.so
861
lib/librte_net_octeon_ep.so.23
862
lib/librte_net_octeon_ep.so.23.0
863
lib/librte_net_pcap.a
864
lib/librte_net_pcap.so
865
lib/librte_net_pcap.so.23
866
lib/librte_net_pcap.so.23.0
867
lib/librte_net_qede.a
868
lib/librte_net_qede.so
869
lib/librte_net_qede.so.23
870
lib/librte_net_qede.so.23.0
871
lib/librte_net_ring.a
872
lib/librte_net_ring.so
873
lib/librte_net_ring.so.23
874
lib/librte_net_ring.so.23.0
875
lib/librte_net_sfc.a
876
lib/librte_net_sfc.so
877
lib/librte_net_sfc.so.23
878
lib/librte_net_sfc.so.23.0
879
lib/librte_net_txgbe.a
880
lib/librte_net_txgbe.so
881
lib/librte_net_txgbe.so.23
882
lib/librte_net_txgbe.so.23.0
883
lib/librte_net_virtio.a
884
lib/librte_net_virtio.so
885
lib/librte_net_virtio.so.23
886
lib/librte_net_virtio.so.23.0
887
lib/librte_net_vmxnet3.a
888
lib/librte_net_vmxnet3.so
889
lib/librte_net_vmxnet3.so.23
890
lib/librte_net_vmxnet3.so.23.0
891
lib/librte_node.a
892
lib/librte_node.so
893
lib/librte_node.so.23
894
lib/librte_node.so.23.0
895
lib/librte_pcapng.a
896
lib/librte_pcapng.so
897
lib/librte_pcapng.so.23
898
lib/librte_pcapng.so.23.0
899
lib/librte_pci.a
900
lib/librte_pci.so
901
lib/librte_pci.so.23
902
lib/librte_pci.so.23.0
903
lib/librte_pdump.a
904
lib/librte_pdump.so
905
lib/librte_pdump.so.23
906
lib/librte_pdump.so.23.0
907
lib/librte_pipeline.a
908
lib/librte_pipeline.so
909
lib/librte_pipeline.so.23
910
lib/librte_pipeline.so.23.0
911
lib/librte_port.a
912
lib/librte_port.so
913
lib/librte_port.so.23
914
lib/librte_port.so.23.0
915
lib/librte_raw_ntb.a
916
lib/librte_raw_ntb.so
917
lib/librte_raw_ntb.so.23
918
lib/librte_raw_ntb.so.23.0
919
lib/librte_raw_skeleton.a
920
lib/librte_raw_skeleton.so
921
lib/librte_raw_skeleton.so.23
922
lib/librte_raw_skeleton.so.23.0
923
lib/librte_rawdev.a
924
lib/librte_rawdev.so
925
lib/librte_rawdev.so.23
926
lib/librte_rawdev.so.23.0
927
lib/librte_rcu.a
928
lib/librte_rcu.so
929
lib/librte_rcu.so.23
930
lib/librte_rcu.so.23.0
931
lib/librte_regexdev.a
932
lib/librte_regexdev.so
933
lib/librte_regexdev.so.23
934
lib/librte_regexdev.so.23.0
935
lib/librte_reorder.a
936
lib/librte_reorder.so
937
lib/librte_reorder.so.23
938
lib/librte_reorder.so.23.0
939
lib/librte_rib.a
940
lib/librte_rib.so
941
lib/librte_rib.so.23
942
lib/librte_rib.so.23.0
943
lib/librte_ring.a
944
lib/librte_ring.so
945
lib/librte_ring.so.23
946
lib/librte_ring.so.23.0
947
lib/librte_sched.a
948
lib/librte_sched.so
949
lib/librte_sched.so.23
950
lib/librte_sched.so.23.0
951
lib/librte_security.a
952
lib/librte_security.so
953
lib/librte_security.so.23
954
lib/librte_security.so.23.0
955
lib/librte_stack.a
956
lib/librte_stack.so
957
lib/librte_stack.so.23
958
lib/librte_stack.so.23.0
959
lib/librte_table.a
960
lib/librte_table.so
961
lib/librte_table.so.23
962
lib/librte_table.so.23.0
963
lib/librte_telemetry.a
964
lib/librte_telemetry.so
965
lib/librte_telemetry.so.23
966
lib/librte_telemetry.so.23.0
967
lib/librte_timer.a
968
lib/librte_timer.so
969
lib/librte_timer.so.23
970
lib/librte_timer.so.23.0
971
libdata/pkgconfig/libdpdk-libs.pc
972
libdata/pkgconfig/libdpdk.pc
973
%%EXAMPLES%%%%DATADIR%%/examples/bbdev_app/Makefile
974
%%EXAMPLES%%%%DATADIR%%/examples/bbdev_app/main.c
975
%%EXAMPLES%%%%DATADIR%%/examples/bond/Makefile
976
%%EXAMPLES%%%%DATADIR%%/examples/bond/main.c
977
%%EXAMPLES%%%%DATADIR%%/examples/bond/main.h
978
%%EXAMPLES%%%%DATADIR%%/examples/bpf/README
979
%%EXAMPLES%%%%DATADIR%%/examples/bpf/dummy.c
980
%%EXAMPLES%%%%DATADIR%%/examples/bpf/t1.c
981
%%EXAMPLES%%%%DATADIR%%/examples/bpf/t2.c
982
%%EXAMPLES%%%%DATADIR%%/examples/bpf/t3.c
983
%%EXAMPLES%%%%DATADIR%%/examples/cmdline/Makefile
984
%%EXAMPLES%%%%DATADIR%%/examples/cmdline/commands.c
985
%%EXAMPLES%%%%DATADIR%%/examples/cmdline/commands.h
986
%%EXAMPLES%%%%DATADIR%%/examples/cmdline/main.c
987
%%EXAMPLES%%%%DATADIR%%/examples/cmdline/parse_obj_list.c
988
%%EXAMPLES%%%%DATADIR%%/examples/cmdline/parse_obj_list.h
989
%%EXAMPLES%%%%DATADIR%%/examples/common/altivec/port_group.h
990
%%EXAMPLES%%%%DATADIR%%/examples/common/neon/port_group.h
991
%%EXAMPLES%%%%DATADIR%%/examples/common/pkt_group.h
992
%%EXAMPLES%%%%DATADIR%%/examples/common/sse/port_group.h
993
%%EXAMPLES%%%%DATADIR%%/examples/distributor/Makefile
994
%%EXAMPLES%%%%DATADIR%%/examples/distributor/main.c
995
%%EXAMPLES%%%%DATADIR%%/examples/dma/Makefile
996
%%EXAMPLES%%%%DATADIR%%/examples/dma/dmafwd.c
997
%%EXAMPLES%%%%DATADIR%%/examples/ethtool/Makefile
998
%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/Makefile
999
%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/ethapp.c
1000
%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/ethapp.h
1001
%%EXAMPLES%%%%DATADIR%%/examples/ethtool/ethtool-app/main.c
1002
%%EXAMPLES%%%%DATADIR%%/examples/ethtool/lib/Makefile
1003
%%EXAMPLES%%%%DATADIR%%/examples/ethtool/lib/rte_ethtool.c
1004
%%EXAMPLES%%%%DATADIR%%/examples/ethtool/lib/rte_ethtool.h
1005
%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/Makefile
1006
%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/main.c
1007
%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/pipeline_common.h
1008
%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/pipeline_worker_generic.c
1009
%%EXAMPLES%%%%DATADIR%%/examples/eventdev_pipeline/pipeline_worker_tx.c
1010
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/Makefile
1011
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_dev_self_test.c
1012
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_dev_self_test.h
1013
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation.c
1014
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation.h
1015
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_aes.c
1016
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_ccm.c
1017
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_cmac.c
1018
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_ecdsa.c
1019
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_gcm.c
1020
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_hmac.c
1021
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_rsa.c
1022
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_sha.c
1023
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_tdes.c
1024
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/fips_validation_xts.c
1025
%%EXAMPLES%%%%DATADIR%%/examples/fips_validation/main.c
1026
%%EXAMPLES%%%%DATADIR%%/examples/flow_classify/Makefile
1027
%%EXAMPLES%%%%DATADIR%%/examples/flow_classify/flow_classify.c
1028
%%EXAMPLES%%%%DATADIR%%/examples/flow_classify/ipv4_rules_file.txt
1029
%%EXAMPLES%%%%DATADIR%%/examples/flow_filtering/Makefile
1030
%%EXAMPLES%%%%DATADIR%%/examples/flow_filtering/flow_blocks.c
1031
%%EXAMPLES%%%%DATADIR%%/examples/flow_filtering/main.c
1032
%%EXAMPLES%%%%DATADIR%%/examples/helloworld/Makefile
1033
%%EXAMPLES%%%%DATADIR%%/examples/helloworld/main.c
1034
%%EXAMPLES%%%%DATADIR%%/examples/ip_fragmentation/Makefile
1035
%%EXAMPLES%%%%DATADIR%%/examples/ip_fragmentation/main.c
1036
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/Makefile
1037
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/action.c
1038
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/action.h
1039
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cli.c
1040
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cli.h
1041
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/common.h
1042
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/conn.c
1043
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/conn.h
1044
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cryptodev.c
1045
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/cryptodev.h
1046
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/firewall.cli
1047
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/flow.cli
1048
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/flow_crypto.cli
1049
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/kni.cli
1050
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/l2fwd.cli
1051
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/route.cli
1052
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/route_ecmp.cli
1053
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/rss.cli
1054
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/examples/tap.cli
1055
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/kni.c
1056
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/kni.h
1057
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/link.c
1058
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/link.h
1059
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/main.c
1060
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/mempool.c
1061
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/mempool.h
1062
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/parser.c
1063
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/parser.h
1064
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/pipeline.c
1065
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/pipeline.h
1066
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/swq.c
1067
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/swq.h
1068
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tap.c
1069
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tap.h
1070
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/thread.c
1071
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/thread.h
1072
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tmgr.c
1073
%%EXAMPLES%%%%DATADIR%%/examples/ip_pipeline/tmgr.h
1074
%%EXAMPLES%%%%DATADIR%%/examples/ip_reassembly/Makefile
1075
%%EXAMPLES%%%%DATADIR%%/examples/ip_reassembly/main.c
1076
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/Makefile
1077
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ep0.cfg
1078
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ep1.cfg
1079
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/esp.c
1080
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/esp.h
1081
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/event_helper.c
1082
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/event_helper.h
1083
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/flow.c
1084
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/flow.h
1085
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipip.h
1086
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec-secgw.c
1087
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec-secgw.h
1088
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec.c
1089
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec.h
1090
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec_lpm_neon.h
1091
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec_neon.h
1092
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec_process.c
1093
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec_worker.c
1094
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/ipsec_worker.h
1095
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/parser.c
1096
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/parser.h
1097
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/rt.c
1098
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sa.c
1099
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sad.c
1100
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sad.h
1101
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sp4.c
1102
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/sp6.c
1103
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/bypass_defs.sh
1104
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/common_defs.sh
1105
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/common_defs_secgw.sh
1106
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/data_rxtx.sh
1107
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/linux_test.sh
1108
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/load_env.sh
1109
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/pkttest.py
1110
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/pkttest.sh
1111
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/run_test.sh
1112
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_common_defs.sh
1113
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_3descbc_sha1_defs.sh
1114
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_common_defs.sh
1115
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aescbc_sha1_defs.sh
1116
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_common_defs.sh
1117
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesctr_sha1_defs.sh
1118
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_common_defs.sh
1119
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_aesgcm_defs.sh
1120
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/trs_ipv6opts.py
1121
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_common_defs.sh
1122
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_3descbc_sha1_defs.sh
1123
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_common_defs.sh
1124
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aescbc_sha1_defs.sh
1125
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_common_defs.sh
1126
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesctr_sha1_defs.sh
1127
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_common_defs.sh
1128
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_aesgcm_defs.sh
1129
%%EXAMPLES%%%%DATADIR%%/examples/ipsec-secgw/test/tun_null_header_reconstruct.py
1130
%%EXAMPLES%%%%DATADIR%%/examples/ipv4_multicast/Makefile
1131
%%EXAMPLES%%%%DATADIR%%/examples/ipv4_multicast/main.c
1132
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/Makefile
1133
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/cat.c
1134
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/cat.h
1135
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-cat/l2fwd-cat.c
1136
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-crypto/Makefile
1137
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-crypto/main.c
1138
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/Makefile
1139
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_common.c
1140
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_common.h
1141
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event.c
1142
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event.h
1143
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event_generic.c
1144
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_event_internal_port.c
1145
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_poll.c
1146
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/l2fwd_poll.h
1147
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-event/main.c
1148
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-jobstats/Makefile
1149
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-jobstats/main.c
1150
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/Makefile
1151
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/ka-agent/Makefile
1152
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/ka-agent/main.c
1153
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/main.c
1154
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/shm.c
1155
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd-keepalive/shm.h
1156
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd/Makefile
1157
%%EXAMPLES%%%%DATADIR%%/examples/l2fwd/main.c
1158
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-graph/Makefile
1159
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-graph/main.c
1160
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/Makefile
1161
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/main.c
1162
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/main.h
1163
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/perf_core.c
1164
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd-power/perf_core.h
1165
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/Makefile
1166
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/em_default_v4.cfg
1167
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/em_default_v6.cfg
1168
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/em_route_parse.c
1169
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd.h
1170
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_acl.c
1171
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_acl.h
1172
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_acl_scalar.h
1173
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_altivec.h
1174
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_common.h
1175
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em.c
1176
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em.h
1177
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm.h
1178
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm_neon.h
1179
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_hlm_sse.h
1180
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_em_sequential.h
1181
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_event.c
1182
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_event.h
1183
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_event_generic.c
1184
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_event_internal_port.c
1185
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_fib.c
1186
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm.c
1187
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm.h
1188
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm_altivec.h
1189
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm_neon.h
1190
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_lpm_sse.h
1191
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_neon.h
1192
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_route.h
1193
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/l3fwd_sse.h
1194
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/lpm_default_v4.cfg
1195
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/lpm_default_v6.cfg
1196
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/lpm_route_parse.c
1197
%%EXAMPLES%%%%DATADIR%%/examples/l3fwd/main.c
1198
%%EXAMPLES%%%%DATADIR%%/examples/link_status_interrupt/Makefile
1199
%%EXAMPLES%%%%DATADIR%%/examples/link_status_interrupt/main.c
1200
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/Makefile
1201
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/Makefile
1202
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_client/Makefile
1203
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_client/client.c
1204
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/Makefile
1205
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/args.c
1206
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/args.h
1207
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/init.c
1208
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/init.h
1209
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/main.c
1210
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/client_server_mp/shared/common.h
1211
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/hotplug_mp/Makefile
1212
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/hotplug_mp/commands.c
1213
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/hotplug_mp/commands.h
1214
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/hotplug_mp/main.c
1215
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/simple_mp/Makefile
1216
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/simple_mp/main.c
1217
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/simple_mp/mp_commands.c
1218
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/simple_mp/mp_commands.h
1219
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/symmetric_mp/Makefile
1220
%%EXAMPLES%%%%DATADIR%%/examples/multi_process/symmetric_mp/main.c
1221
%%EXAMPLES%%%%DATADIR%%/examples/ntb/Makefile
1222
%%EXAMPLES%%%%DATADIR%%/examples/ntb/ntb_fwd.c
1223
%%EXAMPLES%%%%DATADIR%%/examples/packet_ordering/Makefile
1224
%%EXAMPLES%%%%DATADIR%%/examples/packet_ordering/main.c
1225
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/Makefile
1226
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/cli.c
1227
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/cli.h
1228
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/conn.c
1229
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/conn.h
1230
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/ethdev.io
1231
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/fib.cli
1232
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/fib.spec
1233
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/fib_nexthop_group_table.txt
1234
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/fib_nexthop_table.txt
1235
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/fib_routing_table.txt
1236
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/hash_func.cli
1237
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/hash_func.spec
1238
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/l2fwd.cli
1239
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/l2fwd.spec
1240
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/l2fwd_macswp.cli
1241
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/l2fwd_macswp.spec
1242
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/l2fwd_macswp_pcap.cli
1243
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/l2fwd_pcap.cli
1244
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/learner.cli
1245
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/learner.spec
1246
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/meter.cli
1247
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/meter.spec
1248
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/mirroring.cli
1249
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/mirroring.spec
1250
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/packet.txt
1251
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/pcap.io
1252
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/recirculation.cli
1253
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/recirculation.spec
1254
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/registers.cli
1255
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/registers.spec
1256
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/selector.cli
1257
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/selector.spec
1258
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/selector.txt
1259
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/varbit.cli
1260
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/varbit.spec
1261
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/vxlan.cli
1262
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/vxlan.spec
1263
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/vxlan_pcap.cli
1264
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/vxlan_table.py
1265
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/examples/vxlan_table.txt
1266
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/main.c
1267
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/obj.c
1268
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/obj.h
1269
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/thread.c
1270
%%EXAMPLES%%%%DATADIR%%/examples/pipeline/thread.h
1271
%%EXAMPLES%%%%DATADIR%%/examples/ptpclient/Makefile
1272
%%EXAMPLES%%%%DATADIR%%/examples/ptpclient/ptpclient.c
1273
%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/Makefile
1274
%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/main.c
1275
%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/main.h
1276
%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/rte_policer.c
1277
%%EXAMPLES%%%%DATADIR%%/examples/qos_meter/rte_policer.h
1278
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/Makefile
1279
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/app_thread.c
1280
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/args.c
1281
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/cfg_file.c
1282
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/cfg_file.h
1283
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/cmdline.c
1284
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/init.c
1285
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/main.c
1286
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/main.h
1287
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/profile.cfg
1288
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/profile_ov.cfg
1289
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/profile_pie.cfg
1290
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/profile_red.cfg
1291
%%EXAMPLES%%%%DATADIR%%/examples/qos_sched/stats.c
1292
%%EXAMPLES%%%%DATADIR%%/examples/rxtx_callbacks/Makefile
1293
%%EXAMPLES%%%%DATADIR%%/examples/rxtx_callbacks/main.c
1294
%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/Makefile
1295
%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/node/Makefile
1296
%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/node/node.c
1297
%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/Makefile
1298
%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/args.c
1299
%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/args.h
1300
%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/init.c
1301
%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/init.h
1302
%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/server/main.c
1303
%%EXAMPLES%%%%DATADIR%%/examples/server_node_efd/shared/common.h
1304
%%EXAMPLES%%%%DATADIR%%/examples/service_cores/Makefile
1305
%%EXAMPLES%%%%DATADIR%%/examples/service_cores/main.c
1306
%%EXAMPLES%%%%DATADIR%%/examples/skeleton/Makefile
1307
%%EXAMPLES%%%%DATADIR%%/examples/skeleton/basicfwd.c
1308
%%EXAMPLES%%%%DATADIR%%/examples/timer/Makefile
1309
%%EXAMPLES%%%%DATADIR%%/examples/timer/main.c
1310
%%EXAMPLES%%%%DATADIR%%/examples/vdpa/Makefile
1311
%%EXAMPLES%%%%DATADIR%%/examples/vdpa/main.c
1312
%%EXAMPLES%%%%DATADIR%%/examples/vdpa/vdpa_blk_compact.h
1313
%%EXAMPLES%%%%DATADIR%%/examples/vhost/Makefile
1314
%%EXAMPLES%%%%DATADIR%%/examples/vhost/main.c
1315
%%EXAMPLES%%%%DATADIR%%/examples/vhost/main.h
1316
%%EXAMPLES%%%%DATADIR%%/examples/vhost/virtio_net.c
1317
%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/Makefile
1318
%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/blk.c
1319
%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/blk_spec.h
1320
%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/vhost_blk.c
1321
%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/vhost_blk.h
1322
%%EXAMPLES%%%%DATADIR%%/examples/vhost_blk/vhost_blk_compat.c
1323
%%EXAMPLES%%%%DATADIR%%/examples/vhost_crypto/Makefile
1324
%%EXAMPLES%%%%DATADIR%%/examples/vhost_crypto/main.c
1325
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/Makefile
1326
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_manager.c
1327
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_manager.h
1328
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_monitor.c
1329
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/channel_monitor.h
1330
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/Makefile
1331
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/main.c
1332
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/parse.c
1333
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/parse.h
1334
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c
1335
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h
1336
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/main.c
1337
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/oob_monitor.h
1338
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/oob_monitor_nop.c
1339
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/oob_monitor_x86.c
1340
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/parse.c
1341
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/parse.h
1342
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/power_manager.c
1343
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/power_manager.h
1344
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/vm_power_cli.c
1345
%%EXAMPLES%%%%DATADIR%%/examples/vm_power_manager/vm_power_cli.h
1346
%%EXAMPLES%%%%DATADIR%%/examples/vmdq/Makefile
1347
%%EXAMPLES%%%%DATADIR%%/examples/vmdq/main.c
1348
%%EXAMPLES%%%%DATADIR%%/examples/vmdq_dcb/Makefile
1349
%%EXAMPLES%%%%DATADIR%%/examples/vmdq_dcb/main.c

Return to bug 272133