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

Collapse All | Expand All

(-)net/dpdk/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	dpdk
3
PORTNAME=	dpdk
4
PORTVERSION=	18.05.1
4
PORTVERSION=	18.11.5
5
CATEGORIES=	net
5
CATEGORIES=	net
6
MASTER_SITES=	http://fast.dpdk.org/rel/
6
MASTER_SITES=	http://fast.dpdk.org/rel/
7
7
(-)net/dpdk/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1547152584
1
TIMESTAMP = 1574076444
2
SHA256 (dpdk-18.05.1.tar.gz) = be0da492290a303b0b09b79b8c9f6976ea7703ecf9f04d50aeead021c82b94b0
2
SHA256 (dpdk-18.11.5.tar.gz) = 452ad844964387e69c45efbb16188f1d6a4bfa4cf101397a01ef1b5121194ef6
3
SIZE (dpdk-18.05.1.tar.gz) = 13919248
3
SIZE (dpdk-18.11.5.tar.gz) = 14473596
(-)net/dpdk/files/patch-kernel-freebsd-contigmem-contigmem.c (-15 lines)
Lines 1-15 Link Here
1
--- kernel/freebsd/contigmem/contigmem.c.orig	2018-09-05 14:29:02 UTC
2
+++ kernel/freebsd/contigmem/contigmem.c
3
@@ -9,9 +9,12 @@
4
 #include <sys/bio.h>
5
 #include <sys/bus.h>
6
 #include <sys/conf.h>
7
+#include <sys/eventhandler.h>
8
 #include <sys/kernel.h>
9
+#include <sys/lock.h>
10
 #include <sys/malloc.h>
11
 #include <sys/module.h>
12
+#include <sys/mutex.h>
13
 #include <sys/proc.h>
14
 #include <sys/rwlock.h>
15
 #include <sys/systm.h>
(-)net/dpdk/files/patch-kernel-freebsd-nic_uio-nic_uio.c (-10 lines)
Lines 1-10 Link Here
1
--- kernel/freebsd/nic_uio/nic_uio.c.orig	2018-09-05 14:29:02 UTC
2
+++ kernel/freebsd/nic_uio/nic_uio.c
3
@@ -9,6 +9,7 @@
4
 #include <sys/kernel.h> /* types used in module initialization */
5
 #include <sys/conf.h> /* cdevsw struct */
6
 #include <sys/bus.h> /* structs, prototypes for pci bus stuff and DEVMETHOD */
7
+#include <sys/lock.h> /* used by vm_pager.h => MPASS() */
8
 #include <sys/rman.h>
9
 #include <sys/systm.h>
10
 #include <sys/rwlock.h>
(-)net/dpdk/files/patch-lib_librte__eal_common_include_rte__dev.h (+21 lines)
Line 0 Link Here
1
--- lib/librte_eal/common/include/rte_dev.h.orig	2019-11-14 17:31:56 UTC
2
+++ lib/librte_eal/common/include/rte_dev.h
3
@@ -43,7 +43,9 @@ typedef void (*rte_dev_event_cb_fn)(const char *device
4
 					enum rte_dev_event_type event,
5
 					void *cb_arg);
6
 
7
-__attribute__((format(printf, 2, 0)))
8
+#pragma GCC diagnostic push
9
+#pragma GCC diagnostic ignored "-Wformat-nonliteral"
10
+__attribute__((format(printf, 2, 3)))
11
 static inline void
12
 rte_pmd_debug_trace(const char *func_name, const char *fmt, ...)
13
 {
14
@@ -64,6 +66,7 @@ rte_pmd_debug_trace(const char *func_name, const char 
15
 			func_name, buffer);
16
 	}
17
 }
18
+#pragma GCC diagnostic pop
19
 
20
 /*
21
  * Enable RTE_PMD_DEBUG_TRACE() when at least one component relying on the
(-)net/dpdk/pkg-plist (-9 / +49 lines)
Lines 1-5 Link Here
1
/%%KMODDIR%%/contigmem.ko
1
/%%KMODDIR%%/contigmem.ko
2
/%%KMODDIR%%/nic_uio.ko
2
/%%KMODDIR%%/nic_uio.ko
3
%%TOOLS%%bin/dpdk-pmdinfo.py
3
include/dpdk
4
include/dpdk
4
lib/dpdk
5
lib/dpdk
5
%%DATADIR%%/examples/Makefile
6
%%DATADIR%%/examples/Makefile
Lines 38-43 Link Here
38
%%DATADIR%%/examples/exception_path/Makefile
39
%%DATADIR%%/examples/exception_path/Makefile
39
%%DATADIR%%/examples/exception_path/main.c
40
%%DATADIR%%/examples/exception_path/main.c
40
%%DATADIR%%/examples/exception_path/meson.build
41
%%DATADIR%%/examples/exception_path/meson.build
42
%%DATADIR%%/examples/fips_validation/Makefile
43
%%DATADIR%%/examples/fips_validation/fips_validation.c
44
%%DATADIR%%/examples/fips_validation/fips_validation.h
45
%%DATADIR%%/examples/fips_validation/fips_validation_aes.c
46
%%DATADIR%%/examples/fips_validation/fips_validation_ccm.c
47
%%DATADIR%%/examples/fips_validation/fips_validation_cmac.c
48
%%DATADIR%%/examples/fips_validation/fips_validation_gcm.c
49
%%DATADIR%%/examples/fips_validation/fips_validation_hmac.c
50
%%DATADIR%%/examples/fips_validation/fips_validation_tdes.c
51
%%DATADIR%%/examples/fips_validation/main.c
52
%%DATADIR%%/examples/fips_validation/meson.build
41
%%DATADIR%%/examples/flow_classify/Makefile
53
%%DATADIR%%/examples/flow_classify/Makefile
42
%%DATADIR%%/examples/flow_classify/flow_classify.c
54
%%DATADIR%%/examples/flow_classify/flow_classify.c
43
%%DATADIR%%/examples/flow_classify/ipv4_rules_file.txt
55
%%DATADIR%%/examples/flow_classify/ipv4_rules_file.txt
Lines 60-74 Link Here
60
%%DATADIR%%/examples/ip_pipeline/common.h
72
%%DATADIR%%/examples/ip_pipeline/common.h
61
%%DATADIR%%/examples/ip_pipeline/conn.c
73
%%DATADIR%%/examples/ip_pipeline/conn.c
62
%%DATADIR%%/examples/ip_pipeline/conn.h
74
%%DATADIR%%/examples/ip_pipeline/conn.h
75
%%DATADIR%%/examples/ip_pipeline/cryptodev.c
76
%%DATADIR%%/examples/ip_pipeline/cryptodev.h
63
%%DATADIR%%/examples/ip_pipeline/examples/firewall.cli
77
%%DATADIR%%/examples/ip_pipeline/examples/firewall.cli
64
%%DATADIR%%/examples/ip_pipeline/examples/flow.cli
78
%%DATADIR%%/examples/ip_pipeline/examples/flow.cli
79
%%DATADIR%%/examples/ip_pipeline/examples/flow_crypto.cli
65
%%DATADIR%%/examples/ip_pipeline/examples/kni.cli
80
%%DATADIR%%/examples/ip_pipeline/examples/kni.cli
66
%%DATADIR%%/examples/ip_pipeline/examples/l2fwd.cli
81
%%DATADIR%%/examples/ip_pipeline/examples/l2fwd.cli
67
%%DATADIR%%/examples/ip_pipeline/examples/route.cli
82
%%DATADIR%%/examples/ip_pipeline/examples/route.cli
68
%%DATADIR%%/examples/ip_pipeline/examples/route_ecmp.cli
83
%%DATADIR%%/examples/ip_pipeline/examples/route_ecmp.cli
84
%%DATADIR%%/examples/ip_pipeline/examples/rss.cli
69
%%DATADIR%%/examples/ip_pipeline/examples/tap.cli
85
%%DATADIR%%/examples/ip_pipeline/examples/tap.cli
70
%%DATADIR%%/examples/ip_pipeline/hash_func.h
71
%%DATADIR%%/examples/ip_pipeline/hash_func_arm64.h
72
%%DATADIR%%/examples/ip_pipeline/kni.c
86
%%DATADIR%%/examples/ip_pipeline/kni.c
73
%%DATADIR%%/examples/ip_pipeline/kni.h
87
%%DATADIR%%/examples/ip_pipeline/kni.h
74
%%DATADIR%%/examples/ip_pipeline/link.c
88
%%DATADIR%%/examples/ip_pipeline/link.c
Lines 140-146 Link Here
140
%%DATADIR%%/examples/l3fwd-acl/meson.build
154
%%DATADIR%%/examples/l3fwd-acl/meson.build
141
%%DATADIR%%/examples/l3fwd-power/Makefile
155
%%DATADIR%%/examples/l3fwd-power/Makefile
142
%%DATADIR%%/examples/l3fwd-power/main.c
156
%%DATADIR%%/examples/l3fwd-power/main.c
157
%%DATADIR%%/examples/l3fwd-power/main.h
143
%%DATADIR%%/examples/l3fwd-power/meson.build
158
%%DATADIR%%/examples/l3fwd-power/meson.build
159
%%DATADIR%%/examples/l3fwd-power/perf_core.c
160
%%DATADIR%%/examples/l3fwd-power/perf_core.h
144
%%DATADIR%%/examples/l3fwd-vf/Makefile
161
%%DATADIR%%/examples/l3fwd-vf/Makefile
145
%%DATADIR%%/examples/l3fwd-vf/main.c
162
%%DATADIR%%/examples/l3fwd-vf/main.c
146
%%DATADIR%%/examples/l3fwd-vf/meson.build
163
%%DATADIR%%/examples/l3fwd-vf/meson.build
Lines 185-194 Link Here
185
%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/init.h
202
%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/init.h
186
%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/main.c
203
%%DATADIR%%/examples/multi_process/client_server_mp/mp_server/main.c
187
%%DATADIR%%/examples/multi_process/client_server_mp/shared/common.h
204
%%DATADIR%%/examples/multi_process/client_server_mp/shared/common.h
188
%%DATADIR%%/examples/multi_process/l2fwd_fork/Makefile
205
%%DATADIR%%/examples/multi_process/hotplug_mp/Makefile
189
%%DATADIR%%/examples/multi_process/l2fwd_fork/flib.c
206
%%DATADIR%%/examples/multi_process/hotplug_mp/commands.c
190
%%DATADIR%%/examples/multi_process/l2fwd_fork/flib.h
207
%%DATADIR%%/examples/multi_process/hotplug_mp/commands.h
191
%%DATADIR%%/examples/multi_process/l2fwd_fork/main.c
208
%%DATADIR%%/examples/multi_process/hotplug_mp/main.c
192
%%DATADIR%%/examples/multi_process/meson.build
209
%%DATADIR%%/examples/multi_process/meson.build
193
%%DATADIR%%/examples/multi_process/simple_mp/Makefile
210
%%DATADIR%%/examples/multi_process/simple_mp/Makefile
194
%%DATADIR%%/examples/multi_process/simple_mp/main.c
211
%%DATADIR%%/examples/multi_process/simple_mp/main.c
Lines 310-315 Link Here
310
%%DATADIR%%/examples/timer/Makefile
327
%%DATADIR%%/examples/timer/Makefile
311
%%DATADIR%%/examples/timer/main.c
328
%%DATADIR%%/examples/timer/main.c
312
%%DATADIR%%/examples/timer/meson.build
329
%%DATADIR%%/examples/timer/meson.build
330
%%DATADIR%%/examples/vdpa/Makefile
331
%%DATADIR%%/examples/vdpa/main.c
332
%%DATADIR%%/examples/vdpa/meson.build
313
%%DATADIR%%/examples/vhost/Makefile
333
%%DATADIR%%/examples/vhost/Makefile
314
%%DATADIR%%/examples/vhost/main.c
334
%%DATADIR%%/examples/vhost/main.c
315
%%DATADIR%%/examples/vhost/main.h
335
%%DATADIR%%/examples/vhost/main.h
Lines 331-340 Link Here
331
%%DATADIR%%/examples/vm_power_manager/channel_monitor.h
351
%%DATADIR%%/examples/vm_power_manager/channel_monitor.h
332
%%DATADIR%%/examples/vm_power_manager/guest_cli/Makefile
352
%%DATADIR%%/examples/vm_power_manager/guest_cli/Makefile
333
%%DATADIR%%/examples/vm_power_manager/guest_cli/main.c
353
%%DATADIR%%/examples/vm_power_manager/guest_cli/main.c
354
%%DATADIR%%/examples/vm_power_manager/guest_cli/meson.build
355
%%DATADIR%%/examples/vm_power_manager/guest_cli/parse.c
356
%%DATADIR%%/examples/vm_power_manager/guest_cli/parse.h
334
%%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c
357
%%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c
335
%%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h
358
%%DATADIR%%/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h
336
%%DATADIR%%/examples/vm_power_manager/main.c
359
%%DATADIR%%/examples/vm_power_manager/main.c
337
%%DATADIR%%/examples/vm_power_manager/meson.build
360
%%DATADIR%%/examples/vm_power_manager/meson.build
361
%%DATADIR%%/examples/vm_power_manager/oob_monitor.h
362
%%DATADIR%%/examples/vm_power_manager/oob_monitor_nop.c
363
%%DATADIR%%/examples/vm_power_manager/oob_monitor_x86.c
364
%%DATADIR%%/examples/vm_power_manager/parse.c
365
%%DATADIR%%/examples/vm_power_manager/parse.h
338
%%DATADIR%%/examples/vm_power_manager/power_manager.c
366
%%DATADIR%%/examples/vm_power_manager/power_manager.c
339
%%DATADIR%%/examples/vm_power_manager/power_manager.h
367
%%DATADIR%%/examples/vm_power_manager/power_manager.h
340
%%DATADIR%%/examples/vm_power_manager/vm_power_cli.c
368
%%DATADIR%%/examples/vm_power_manager/vm_power_cli.c
Lines 464-469 Link Here
464
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_byteorder_32.h
492
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_byteorder_32.h
465
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_byteorder_64.h
493
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_byteorder_64.h
466
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cfgfile.h
494
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cfgfile.h
495
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_class.h
467
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_common.h
496
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_common.h
468
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_comp.h
497
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_comp.h
469
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_compat.h
498
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_compat.h
Lines 473-478 Link Here
473
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_config.h
502
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_config.h
474
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cpuflags.h
503
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cpuflags.h
475
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_crypto.h
504
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_crypto.h
505
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_crypto_asym.h
476
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_crypto_sym.h
506
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_crypto_sym.h
477
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cryptodev.h
507
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cryptodev.h
478
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cryptodev_pmd.h
508
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_cryptodev_pmd.h
Lines 494-500 Link Here
494
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_bond_8023ad.h
524
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_bond_8023ad.h
495
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_ctrl.h
525
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_ctrl.h
496
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_ring.h
526
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_ring.h
497
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_eth_softnic.h
498
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev.h
527
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev.h
499
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev_core.h
528
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev_core.h
500
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev_driver.h
529
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ethdev_driver.h
Lines 503-508 Link Here
503
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ether.h
532
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_ether.h
504
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_crypto_adapter.h
533
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_crypto_adapter.h
505
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_eth_rx_adapter.h
534
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_eth_rx_adapter.h
535
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_eth_tx_adapter.h
506
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_ring.h
536
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_ring.h
507
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_timer_adapter.h
537
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_timer_adapter.h
508
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_timer_adapter_pmd.h
538
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_event_timer_adapter_pmd.h
Lines 552-561 Link Here
552
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_memzone.h
582
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_memzone.h
553
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_meter.h
583
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_meter.h
554
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_metrics.h
584
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_metrics.h
585
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mpls.h
555
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mtr.h
586
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mtr.h
556
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mtr_driver.h
587
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_mtr_driver.h
557
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_net.h
588
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_net.h
558
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_net_crc.h
589
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_net_crc.h
590
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_option.h
559
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pause.h
591
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pause.h
560
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pci.h
592
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pci.h
561
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pci_dev_feature_defs.h
593
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_pci_dev_feature_defs.h
Lines 575-580 Link Here
575
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_ring.h
607
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_ring.h
576
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_sched.h
608
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_sched.h
577
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_source_sink.h
609
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_source_sink.h
610
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_port_sym_crypto.h
578
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_prefetch.h
611
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_prefetch.h
579
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_random.h
612
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_random.h
580
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_rawdev.h
613
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_rawdev.h
Lines 602-607 Link Here
602
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_array.h
635
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_array.h
603
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_hash.h
636
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_hash.h
604
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_hash_cuckoo.h
637
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_hash_cuckoo.h
638
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_hash_func.h
639
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_hash_func_arm64.h
605
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_lpm.h
640
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_lpm.h
606
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_lpm_ipv6.h
641
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_lpm_ipv6.h
607
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_stub.h
642
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_table_stub.h
Lines 614-619 Link Here
614
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_tm.h
649
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_tm.h
615
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_tm_driver.h
650
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_tm_driver.h
616
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_udp.h
651
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_udp.h
652
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_uuid.h
617
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_vect.h
653
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_vect.h
618
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_version.h
654
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_version.h
619
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_vfio.h
655
%%DATADIR%%/x86_64-native-bsdapp-clang/include/rte_vfio.h
Lines 627-632 Link Here
627
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_bus_vdev.a
663
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_bus_vdev.a
628
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_cfgfile.a
664
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_cfgfile.a
629
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_cmdline.a
665
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_cmdline.a
666
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_common_cpt.a
630
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_common_octeontx.a
667
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_common_octeontx.a
631
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_compressdev.a
668
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_compressdev.a
632
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_cryptodev.a
669
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_cryptodev.a
Lines 658-663 Link Here
658
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pdump.a
695
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pdump.a
659
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pipeline.a
696
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pipeline.a
660
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ark.a
697
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ark.a
698
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_atlantic.a
661
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_avf.a
699
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_avf.a
662
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_axgbe.a
700
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_axgbe.a
663
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_bbdev_null.a
701
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_bbdev_null.a
Lines 665-670 Link Here
665
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_bond.a
703
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_bond.a
666
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_crypto_scheduler.a
704
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_crypto_scheduler.a
667
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_cxgbe.a
705
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_cxgbe.a
706
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_dsw_event.a
668
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_e1000.a
707
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_e1000.a
669
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ena.a
708
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ena.a
670
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_enic.a
709
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_enic.a
Lines 677-690 Link Here
677
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_null.a
716
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_null.a
678
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_null_crypto.a
717
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_null_crypto.a
679
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_octeontx.a
718
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_octeontx.a
719
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_octeontx_crypto.a
680
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_octeontx_ssovf.a
720
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_octeontx_ssovf.a
721
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_octeontx_zip.a
681
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_opdl_event.a
722
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_opdl_event.a
723
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_qat.a
682
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_qede.a
724
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_qede.a
683
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ring.a
725
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_ring.a
684
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_sfc_efx.a
726
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_sfc_efx.a
685
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_skeleton_event.a
727
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_skeleton_event.a
686
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_skeleton_rawdev.a
728
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_skeleton_rawdev.a
687
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_softnic.a
688
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_sw_event.a
729
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_sw_event.a
689
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_thunderx_nicvf.a
730
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_thunderx_nicvf.a
690
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_virtio.a
731
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_pmd_virtio.a
Lines 698-702 Link Here
698
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_security.a
739
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_security.a
699
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_table.a
740
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_table.a
700
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_timer.a
741
%%DATADIR%%/x86_64-native-bsdapp-clang/lib/librte_timer.a
701
%%TOOLS%%bin/dpdk-pmdinfo.py
702
%%PORTEXAMPLES%%%%EXAMPLESDIR%%
742
%%PORTEXAMPLES%%%%EXAMPLESDIR%%

Return to bug 241949