FD.io VPP  v16.12-rc0-308-g931be3a
Vector Packet Processing
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
dpdk.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef __included_dpdk_h__
16 #define __included_dpdk_h__
17 
18 /* $$$$ We should rename always_inline -> clib_always_inline */
19 #undef always_inline
20 
21 #include <rte_config.h>
22 
23 #include <rte_common.h>
24 #include <rte_dev.h>
25 #include <rte_log.h>
26 #include <rte_memory.h>
27 #include <rte_memzone.h>
28 #include <rte_tailq.h>
29 #include <rte_eal.h>
30 #include <rte_per_lcore.h>
31 #include <rte_launch.h>
32 #include <rte_atomic.h>
33 #include <rte_cycles.h>
34 #include <rte_prefetch.h>
35 #include <rte_lcore.h>
36 #include <rte_per_lcore.h>
37 #include <rte_branch_prediction.h>
38 #include <rte_interrupts.h>
39 #include <rte_pci.h>
40 #include <rte_random.h>
41 #include <rte_debug.h>
42 #include <rte_ether.h>
43 #include <rte_ethdev.h>
44 #include <rte_ring.h>
45 #include <rte_mempool.h>
46 #include <rte_mbuf.h>
47 #include <rte_virtio_net.h>
48 #include <rte_version.h>
49 #include <rte_eth_bond.h>
50 #include <rte_sched.h>
51 
52 #include <vnet/unix/pcap.h>
53 #include <vnet/devices/devices.h>
54 
55 #if CLIB_DEBUG > 0
56 #define always_inline static inline
57 #else
58 #define always_inline static inline __attribute__ ((__always_inline__))
59 #endif
60 
61 #include <vlib/pci/pci.h>
62 
63 #define NB_MBUF (16<<10)
64 
68 
69 #if RTE_VERSION >= RTE_VERSION_NUM(16, 11, 0, 0)
70 #define foreach_dpdk_pmd \
71  _ ("net_thunderx", THUNDERX) \
72  _ ("net_e1000_em", E1000EM) \
73  _ ("net_e1000_igb", IGB) \
74  _ ("net_e1000_igb_vf", IGBVF) \
75  _ ("net_ixgbe", IXGBE) \
76  _ ("net_ixgbe_vf", IXGBEVF) \
77  _ ("net_i40e", I40E) \
78  _ ("net_i40e_vf", I40EVF) \
79  _ ("net_virtio", VIRTIO) \
80  _ ("net_enic", ENIC) \
81  _ ("net_vmxnet3", VMXNET3) \
82  _ ("net_af_packet", AF_PACKET) \
83  _ ("net_bonding", BOND) \
84  _ ("net_fm10k", FM10K) \
85  _ ("net_cxgbe", CXGBE) \
86  _ ("net_dpaa2", DPAA2)
87 #else
88 #define foreach_dpdk_pmd \
89  _ ("rte_nicvf_pmd", THUNDERX) \
90  _ ("rte_em_pmd", E1000EM) \
91  _ ("rte_igb_pmd", IGB) \
92  _ ("rte_igbvf_pmd", IGBVF) \
93  _ ("rte_ixgbe_pmd", IXGBE) \
94  _ ("rte_ixgbevf_pmd", IXGBEVF) \
95  _ ("rte_i40e_pmd", I40E) \
96  _ ("rte_i40evf_pmd", I40EVF) \
97  _ ("rte_virtio_pmd", VIRTIO) \
98  _ ("rte_enic_pmd", ENIC) \
99  _ ("rte_vmxnet3_pmd", VMXNET3) \
100  _ ("AF_PACKET PMD", AF_PACKET) \
101  _ ("rte_bond_pmd", BOND) \
102  _ ("rte_pmd_fm10k", FM10K) \
103  _ ("rte_cxgbe_pmd", CXGBE) \
104  _ ("rte_dpaa2_dpni", DPAA2)
105 #endif
106 
107 typedef enum
108 {
110 #define _(s,f) VNET_DPDK_PMD_##f,
112 #undef _
113  VNET_DPDK_PMD_UNKNOWN, /* must be last */
114 } dpdk_pmd_t;
115 
116 typedef enum
117 {
126 
127 typedef struct
128 {
131 } dpdk_frame_t;
132 
133 #define DPDK_EFD_MAX_DISCARD_RATE 10
134 
135 typedef struct
136 {
147 
149  u32 hw_if_index, u32 n_packets);
150 
151 /*
152  * The header for the tx_vector in dpdk_device_t.
153  * Head and tail are indexes into the tx_vector and are of type
154  * u64 so they never overflow.
155  */
156 typedef struct
157 {
160 } tx_ring_hdr_t;
161 
162 typedef struct
163 {
164  struct rte_ring *swq;
165 
175  u32 hqos_tc_table[64];
177 
178 typedef struct
179 {
180  struct rte_ring **swq;
181  struct rte_mbuf **pkts_enq;
182  struct rte_mbuf **pkts_deq;
183  struct rte_sched_port *hqos;
190 
191 typedef struct
192 {
193  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
194  volatile u32 **lockp;
195 
196  /* Instance ID */
198 
201 
202  /* next node index if we decide to steal the rx graph arc */
204 
205  /* dpdk rte_mbuf rx and tx vectors, VLIB_FRAME_SIZE */
206  struct rte_mbuf ***tx_vectors; /* one per worker thread */
207  struct rte_mbuf ***rx_vectors;
208 
209  /* vector of traced contexts, per device */
211 
212  dpdk_pmd_t pmd:8;
214 
216 #define DPDK_DEVICE_FLAG_ADMIN_UP (1 << 0)
217 #define DPDK_DEVICE_FLAG_PROMISC (1 << 1)
218 #define DPDK_DEVICE_FLAG_PMD (1 << 2)
219 
220 #define DPDK_DEVICE_FLAG_HAVE_SUBIF (1 << 5)
221 #define DPDK_DEVICE_FLAG_HQOS (1 << 6)
222 
224  CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
225 
227 
228  /* number of sub-interfaces */
230 
231  /* PMD related */
236  struct rte_eth_conf port_conf;
237  struct rte_eth_txconf tx_conf;
238 
239  /* HQoS related */
242 
243  /* af_packet */
245 
246  struct rte_eth_link link;
248 
249  struct rte_eth_stats stats;
250  struct rte_eth_stats last_stats;
251  struct rte_eth_stats last_cleared_stats;
252  struct rte_eth_xstat *xstats;
253  struct rte_eth_xstat *last_cleared_xstats;
256 
258 } dpdk_device_t;
259 
260 #define DPDK_STATS_POLL_INTERVAL (10.0)
261 #define DPDK_MIN_STATS_POLL_INTERVAL (0.001) /* 1msec */
262 
263 #define DPDK_LINK_POLL_INTERVAL (3.0)
264 #define DPDK_MIN_LINK_POLL_INTERVAL (0.001) /* 1msec */
265 
266 typedef struct
267 {
268  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
269 
270  /* total input packet counter */
272 } dpdk_worker_t;
273 
274 typedef struct
275 {
276  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
277 
278  /* total input packet counter */
281 
282 typedef struct
283 {
287 
288 /* Early-Fast-Discard (EFD) */
289 #define DPDK_EFD_DISABLED 0
290 #define DPDK_EFD_DISCARD_ENABLED (1 << 0)
291 #define DPDK_EFD_MONITOR_ENABLED (1 << 1)
292 #define DPDK_EFD_DROPALL_ENABLED (1 << 2)
293 
294 #define DPDK_EFD_DEFAULT_DEVICE_QUEUE_HI_THRESH_PCT 90
295 #define DPDK_EFD_DEFAULT_CONSEC_FULL_FRAMES_HI_THRESH 6
296 
297 typedef struct dpdk_efd_t
298 {
303 } dpdk_efd_t;
304 
305 #ifndef DPDK_HQOS_DBG_BYPASS
306 #define DPDK_HQOS_DBG_BYPASS 0
307 #endif
308 
309 #ifndef HQOS_FLUSH_COUNT_THRESHOLD
310 #define HQOS_FLUSH_COUNT_THRESHOLD 100000
311 #endif
312 
314 {
317 
321 
328  u32 tc_table[64];
329 
330  struct rte_sched_port_params port;
331  struct rte_sched_subport_params *subport;
332  struct rte_sched_pipe_params *pipe;
333  uint32_t *pipe_map;
335 
336 int dpdk_hqos_validate_mask (u64 mask, u32 n);
338  hqos, u32 pipe_profile_id);
343  struct rte_mbuf **pkts, u32 n_pkts);
344 
345 #define foreach_dpdk_device_config_item \
346  _ (num_rx_queues) \
347  _ (num_tx_queues) \
348  _ (num_rx_desc) \
349  _ (num_tx_desc) \
350  _ (rss_fn)
351 
352 typedef struct
353 {
354  vlib_pci_addr_t pci_addr;
357 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
358 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
359 #define DPDK_DEVICE_VLAN_STRIP_ON 2
360 
361 #define _(x) uword x;
363 #undef _
368 
369 typedef struct
370 {
371 
372  /* Config stuff */
378 
379  /* Required config parameters */
385  u8 num_kni; /* while kni_init allows u32, port_id in callback fn is only u8 */
386 
387  /*
388  * format interface names ala xxxEthernet%d/%d/%d instead of
389  * xxxEthernet%x/%x/%x.
390  */
392 
393  /* per-device config */
397 
399 
401 
402 typedef struct
403 {
404 
405  /* Devices */
409 
410  /* per-thread recycle lists */
412 
413  /* buffer flags template, configurable to enable/disable tcp / udp cksum */
415 
416  /* flow control callback. If 0 then flow control is disabled */
418 
419  /* vlib buffer free list, must be same size as an rte_mbuf */
421 
422  /* dpdk worker "threads" */
424 
425  /* dpdk HQoS "threads" */
427 
428  /* Ethernet input node index */
430 
431  /* pcap tracing [only works if (CLIB_DEBUG > 0)] */
437 
438  /* hashes */
443 
444  /* efd (early-fast-discard) settings */
446 
447  /*
448  * flag indicating that a posted admin up/down
449  * (via post_sw_interface_set_flags) is in progress
450  */
452 
454 
455  /* which cpus are running dpdk-input */
458 
459  /* which cpus are running I/O TX */
462 
463  /* control interval of dpdk link state and stat polling */
466 
467  /* Sleep for this many MS after each device poll */
469 
470  /* convenience */
474 } dpdk_main_t;
475 
477 
478 typedef struct
479 {
483  struct rte_mbuf mb;
484  /* Copy of VLIB buffer; packet data stored in pre_data. */
487 
488 typedef struct
489 {
493  struct rte_mbuf mb;
494  vlib_buffer_t buffer; /* Copy of VLIB buffer; pkt data stored in pre_data. */
495  u8 data[256]; /* First 256 data bytes, used for hexdump */
497 
499 
501 
503  struct ether_addr mc_addr_vec[], int naddr);
504 
506 
508 
510  dpdk_flowcontrol_callback_t callback);
511 
512 u32 dpdk_interface_tx_vector (vlib_main_t * vm, u32 dev_instance);
513 
514 void set_efd_bitmap (u8 * bitmap, u32 value, u32 op);
515 
516 struct rte_mbuf *dpdk_replicate_packet_mb (vlib_buffer_t * b);
517 struct rte_mbuf *dpdk_zerocopy_replicate_packet_mb (vlib_buffer_t * b);
518 
519 #define foreach_dpdk_error \
520  _(NONE, "no error") \
521  _(RX_PACKET_ERROR, "Rx packet errors") \
522  _(RX_BAD_FCS, "Rx bad fcs") \
523  _(L4_CHECKSUM_ERROR, "Rx L4 checksum errors") \
524  _(IP_CHECKSUM_ERROR, "Rx ip checksum errors") \
525  _(RX_ALLOC_FAIL, "rx buf alloc from free list failed") \
526  _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem") \
527  _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error") \
528  _(IPV4_EFD_DROP_PKTS, "IPV4 Early Fast Discard rx drops") \
529  _(IPV6_EFD_DROP_PKTS, "IPV6 Early Fast Discard rx drops") \
530  _(MPLS_EFD_DROP_PKTS, "MPLS Early Fast Discard rx drops") \
531  _(VLAN_EFD_DROP_PKTS, "VLAN Early Fast Discard rx drops")
532 
533 typedef enum
534 {
535 #define _(f,s) DPDK_ERROR_##f,
537 #undef _
539 } dpdk_error_t;
540 
541 /*
542  * Increment EFD drop counter
543  */
546 {
547  vlib_node_t *my_n;
548 
549  my_n = vlib_get_node (vm, dpdk_input_node.index);
550  vm->error_main.counters[my_n->error_heap_index + counter_index] += count;
551 }
552 
553 int dpdk_set_stat_poll_interval (f64 interval);
555 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
558 void dpdk_efd_update_counters (dpdk_device_t * xd, u32 n_buffers,
559  u16 enabled);
561  struct rte_mbuf *mb);
562 
563 static inline u64
565 {
566  dpdk_main_t *dm = &dpdk_main;
567  u64 sum = 0;
568  dpdk_worker_t *dw;
569 
570  vec_foreach (dw, dm->workers) sum += dw->aggregate_rx_packets;
571 
572  return sum;
573 }
574 
575 void dpdk_rx_trace (dpdk_main_t * dm,
576  vlib_node_runtime_t * node,
577  dpdk_device_t * xd,
578  u16 queue_id, u32 * buffers, uword n_buffers);
579 
580 #define EFD_OPERATION_LESS_THAN 0
581 #define EFD_OPERATION_GREATER_OR_EQUAL 1
582 
583 void efd_config (u32 enabled,
584  u32 ip_prec, u32 ip_op,
585  u32 mpls_exp, u32 mpls_op, u32 vlan_cos, u32 vlan_op);
586 
587 void post_sw_interface_set_flags (vlib_main_t * vm, u32 sw_if_index,
588  u32 flags);
589 
591 
592 u32 dpdk_num_mbufs (void);
593 
595 
597 
601 
603  struct rte_eth_stats *dest);
604 
615 
616 uword
619 
620 #endif /* __included_dpdk_h__ */
621 
622 /*
623  * fd.io coding-style-patch-verification: ON
624  *
625  * Local Variables:
626  * eval: (c-set-style "gnu")
627  * End:
628  */
void(* dpdk_flowcontrol_callback_t)(vlib_main_t *vm, u32 hw_if_index, u32 n_packets)
Definition: dpdk.h:148
void dpdk_device_lock_free(dpdk_device_t *xd)
Definition: init.c:227
f64 time_last_link_update
Definition: dpdk.h:247
struct dpdk_device_config_hqos_t dpdk_device_config_hqos_t
vmrglw vmrglh hi
u16 enabled
Definition: dpdk.h:299
u32 error_heap_index
Definition: node.h:278
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:68
uword( unformat_function_t)(unformat_input_t *input, va_list *args)
Definition: format.h:231
struct rte_mbuf * dpdk_replicate_packet_mb(vlib_buffer_t *b)
Definition: device.c:88
u8 * eal_init_args_str
Definition: dpdk.h:374
void post_sw_interface_set_flags(vlib_main_t *vm, u32 sw_if_index, u32 flags)
Definition: device.c:1062
vlib_buffer_t buffer
Definition: dpdk.h:485
u16 max_burst_sz
Definition: dpdk.h:138
u8 interface_name_format_decimal
Definition: dpdk.h:391
dpdk_main_t dpdk_main
Definition: dpdk.h:476
int dpdk_hqos_validate_mask(u64 mask, u32 n)
Definition: hqos.c:171
u8 use_rss
Definition: dpdk.h:453
vnet_device_class_t dpdk_device_class
clib_error_t * dpdk_set_mc_filter(vnet_hw_interface_t *hi, struct ether_addr mc_addr_vec[], int naddr)
Definition: device.c:68
u64 last_poll_time
Definition: dpdk.h:142
#define foreach_dpdk_error
Definition: dpdk.h:519
u64 aggregate_rx_packets
Definition: dpdk.h:279
dpdk_error_t
Definition: dpdk.h:533
i8 dpdk_get_cpu_socket(vnet_hw_interface_t *hi)
Definition: device.c:1131
PCAP utility definitions.
u32 dpdk_num_mbufs(void)
Definition: device.c:1102
u16 flags
Definition: dpdk.h:215
struct dpdk_efd_t dpdk_efd_t
dpdk_pmd_t dpdk_get_pmd_type(vnet_hw_interface_t *hi)
Definition: device.c:1113
dpdk_device_and_queue_t ** devices_by_hqos_cpu
Definition: dpdk.h:408
struct _vlib_node_registration vlib_node_registration_t
u32 per_interface_next_index
Definition: dpdk.h:203
u8 enable_tcp_udp_checksum
Definition: dpdk.h:377
struct rte_mbuf ** pkts_enq
Definition: dpdk.h:181
struct rte_ring ** swq
Definition: dpdk.h:180
struct rte_sched_port * hqos
Definition: dpdk.h:183
u64 tx_tail
Definition: dpdk.h:159
u32 congestion_cnt
Definition: dpdk.h:141
struct rte_eth_xstat * last_cleared_xstats
Definition: dpdk.h:253
format_function_t format_dpdk_rte_mbuf
Definition: dpdk.h:609
dpdk_device_config_hqos_t hqos
Definition: dpdk.h:366
u16 num_subifs
Definition: dpdk.h:229
struct _vnet_device_class vnet_device_class_t
u8 * pcap_filename
Definition: dpdk.h:434
format_function_t format_dpdk_tx_dma_trace
Definition: dpdk.h:607
clib_error_t * dpdk_port_setup(dpdk_main_t *dm, dpdk_device_t *xd)
Definition: init.c:65
f64 deadline
Definition: dpdk.h:129
struct rte_sched_pipe_params * pipe
Definition: dpdk.h:332
void * dpdk_input_efd_multiarch_select()
struct rte_mbuf *** tx_vectors
Definition: dpdk.h:206
foreach_dpdk_device_config_item clib_bitmap_t * workers
Definition: dpdk.h:364
#define static_always_inline
Definition: clib.h:85
PCAP main state data structure.
Definition: pcap.h:122
dpdk_config_main_t dpdk_config_main
Definition: dpdk.h:400
vlib_node_registration_t dpdk_input_node
(constructor) VLIB_REGISTER_NODE (dpdk_input_node)
Definition: node.c:707
struct rte_mbuf ** pkts_deq
Definition: dpdk.h:182
dpdk_device_config_t default_devconf
Definition: dpdk.h:394
f64 stat_poll_interval
Definition: dpdk.h:465
static u32 counter_index(vlib_main_t *vm, vlib_error_t e)
u32 pcap_pkts_to_capture
Definition: dpdk.h:436
unformat_function_t unformat_socket_mem
Definition: dpdk.h:611
int input_cpu_first_index
Definition: dpdk.h:456
u32 dpdk_interface_tx_vector(vlib_main_t *vm, u32 dev_instance)
Definition: device.c:449
char i8
Definition: types.h:45
u16 rx_q_used
Definition: dpdk.h:233
unsigned long u64
Definition: types.h:89
u32 dpdk_get_admin_up_down_in_progress(void)
Definition: device.c:995
format_function_t format_dpdk_rx_rte_mbuf
Definition: dpdk.h:610
clib_error_t * unformat_rss_fn(unformat_input_t *input, uword *rss_fn)
Definition: format.c:765
u32 device_index
Definition: dpdk.h:197
dpdk_device_hqos_per_worker_thread_t * hqos_wt
Definition: dpdk.h:240
dpdk_worker_t * workers
Definition: dpdk.h:423
void * dpdk_input_multiarch_select()
vlib_node_registration_t handoff_dispatch_node
(constructor) VLIB_REGISTER_NODE (handoff_dispatch_node)
Definition: handoff.c:507
f64 time_last_stats_update
Definition: dpdk.h:254
u32 pcap_sw_if_index
Definition: dpdk.h:435
u16 consec_full_frames_hi_thresh
Definition: dpdk.h:301
dpdk_hqos_thread_t * hqos_threads
Definition: dpdk.h:426
u32 vlib_sw_if_index
Definition: dpdk.h:200
vlib_pci_addr_t pci_addr
Definition: dpdk.h:354
format_function_t format_dpdk_rx_dma_trace
Definition: dpdk.h:608
dpdk_device_and_queue_t ** devices_by_cpu
Definition: dpdk.h:407
u64 max_poll_delay
Definition: dpdk.h:143
static_always_inline void increment_efd_drop_counter(vlib_main_t *vm, u32 counter_index, u32 count)
Definition: dpdk.h:545
int dpdk_set_link_state_poll_interval(f64 interval)
Definition: init.c:1692
u8 ** eal_init_args
Definition: dpdk.h:373
u32 consec_full_frames_cnt
Definition: dpdk.h:140
vlib_error_main_t error_main
Definition: main.h:124
void vnet_buffer_needs_dpdk_mb(vlib_buffer_t *b)
u32 vlib_hw_if_index
Definition: dpdk.h:199
dpdk_flowcontrol_callback_t flowcontrol_callback
Definition: dpdk.h:417
pcap_main_t pcap_main
Definition: dpdk.h:433
static u64 vnet_get_aggregate_rx_packets(void)
Definition: dpdk.h:564
void efd_config(u32 enabled, u32 ip_prec, u32 ip_op, u32 mpls_exp, u32 mpls_op, u32 vlan_cos, u32 vlan_op)
Definition: node.c:757
void dpdk_hqos_metadata_set(dpdk_device_hqos_per_worker_thread_t *hqos, struct rte_mbuf **pkts, u32 n_pkts)
Definition: hqos.c:640
#define foreach_dpdk_pmd
Definition: dpdk.h:70
u16 last_burst_sz
Definition: dpdk.h:137
dpdk_port_type_t port_type
Definition: dpdk.h:255
u32 * d_trace_buffers
Definition: dpdk.h:210
u32 full_frames_cnt
Definition: dpdk.h:139
int input_cpu_count
Definition: dpdk.h:457
void dpdk_rx_trace(dpdk_main_t *dm, vlib_node_runtime_t *node, dpdk_device_t *xd, u16 queue_id, u32 *buffers, uword n_buffers)
Definition: node.c:145
vlib_frame_t * frame
Definition: dpdk.h:130
u16 tx_q_used
Definition: dpdk.h:232
u16 nb_rx_desc
Definition: dpdk.h:234
u64 aggregate_rx_packets
Definition: dpdk.h:271
void dpdk_thread_input(dpdk_main_t *dm, dpdk_device_t *xd)
u64 * counters
Definition: error.h:78
u32 ** recycle
Definition: dpdk.h:411
clib_error_t * dpdk_get_hw_interface_stats(u32 hw_if_index, struct rte_eth_stats *dest)
Definition: device.c:1075
dpdk_device_t * devices
Definition: dpdk.h:406
u8 nchannels_set_manually
Definition: dpdk.h:381
u16 * cpu_socket_id_by_queue
Definition: dpdk.h:235
void dpdk_device_config_hqos_pipe_profile_default(dpdk_device_config_hqos_t *hqos, u32 pipe_profile_id)
Definition: hqos.c:200
volatile u32 ** lockp
Definition: dpdk.h:194
dpdk_device_config_t * dev_confs
Definition: dpdk.h:395
struct rte_mbuf *** rx_vectors
Definition: dpdk.h:207
u16 queue_hi_thresh
Definition: dpdk.h:300
int dpdk_set_stat_poll_interval(f64 interval)
Definition: init.c:1681
u8 coremask_set_manually
Definition: dpdk.h:380
dpdk_pmd_t
Definition: dpdk.h:107
uword admin_up_down_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: device.c:1001
format_function_t format_dpdk_device
Definition: dpdk.h:606
void dpdk_efd_update_counters(dpdk_device_t *xd, u32 n_buffers, u16 enabled)
Definition: node.c:200
struct rte_eth_xstat * xstats
Definition: dpdk.h:252
u8 * interface_name_suffix
Definition: dpdk.h:226
u32 discard_cnt
Definition: dpdk.h:144
void dpdk_set_flowcontrol_callback(vlib_main_t *vm, dpdk_flowcontrol_callback_t callback)
Definition: device.c:985
format_function_t format_dpdk_device_name
Definition: dpdk.h:605
void dpdk_device_config_hqos_default(dpdk_device_config_hqos_t *hqos)
Definition: hqos.c:208
unsigned int u32
Definition: types.h:88
int hqos_cpu_count
Definition: dpdk.h:461
u32 * vu_inactive_interfaces_device_index
Definition: dpdk.h:442
u64 tx_head
Definition: dpdk.h:158
u32 poll_sleep
Definition: dpdk.h:468
void * dpdk_input_rss_multiarch_select()
dpdk_efd_t efd
Definition: dpdk.h:445
u8 af_packet_port_id
Definition: dpdk.h:244
void dpdk_device_lock_init(dpdk_device_t *xd)
Definition: init.c:214
dpdk_device_hqos_per_hqos_thread_t * hqos_ht
Definition: dpdk.h:241
struct rte_mbuf * dpdk_zerocopy_replicate_packet_mb(vlib_buffer_t *b)
Definition: device.c:159
void dpdk_update_link_state(dpdk_device_t *xd, f64 now)
Definition: init.c:1392
clib_error_t * dpdk_set_mac_address(vnet_hw_interface_t *hi, char *address)
Definition: device.c:48
u32 is_efd_discardable(vlib_thread_main_t *tm, vlib_buffer_t *b0, struct rte_mbuf *mb)
Definition: node.c:236
u8 *( format_function_t)(u8 *s, va_list *args)
Definition: format.h:48
clib_error_t * dpdk_port_setup_hqos(dpdk_device_t *xd, dpdk_device_config_hqos_t *hqos)
Definition: hqos.c:250
u64 uword
Definition: types.h:112
dpdk_port_type_t
Definition: dpdk.h:116
unsigned short u16
Definition: types.h:57
vlib_buffer_t buffer
Definition: dpdk.h:494
u32 ethernet_input_node_index
Definition: dpdk.h:429
double f64
Definition: types.h:142
unsigned char u8
Definition: types.h:56
dpdk_efd_agent_t efd_agent
Definition: dpdk.h:257
u8 admin_up_down_in_progress
Definition: dpdk.h:451
void set_efd_bitmap(u8 *bitmap, u32 value, u32 op)
Definition: node.c:741
u16 pad
Definition: dpdk.h:302
uint32_t * pipe_map
Definition: dpdk.h:333
u32 buffer_flags_template
Definition: dpdk.h:414
u32 vlib_buffer_free_list_index
Definition: dpdk.h:420
int hqos_cpu_first_index
Definition: dpdk.h:460
struct rte_sched_subport_params * subport
Definition: dpdk.h:331
#define foreach_dpdk_device_config_item
Definition: dpdk.h:345
uword clib_bitmap_t
Definition: bitmap.h:50
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:58
#define vec_foreach(var, vec)
Vector iterator.
i8 cpu_socket
Definition: dpdk.h:213
u32 total_packet_cnt
Definition: dpdk.h:145
struct _unformat_input_t unformat_input_t
u8 * uio_driver_name
Definition: dpdk.h:375
u32 flags
Definition: vhost-user.h:75
int tx_pcap_enable
Definition: dpdk.h:432
vnet_main_t * vnet_main
Definition: dpdk.h:472
u16 nb_tx_desc
Definition: dpdk.h:223
clib_error_t * unformat_hqos(unformat_input_t *input, dpdk_device_config_hqos_t *hqos)
Definition: format.c:788
uword * device_config_index_by_pci_addr
Definition: dpdk.h:396
uword * dpdk_device_by_kni_port_id
Definition: dpdk.h:439
uword * vu_sw_if_index_by_listener_fd
Definition: dpdk.h:440
f64 link_state_poll_interval
Definition: dpdk.h:464
dpdk_config_main_t * conf
Definition: dpdk.h:473
uword * vu_sw_if_index_by_sock_fd
Definition: dpdk.h:441
vlib_main_t * vlib_main
Definition: dpdk.h:471