63f9913deb6c8f6af54130ce65e31293a2f4b8ed
[dpdk.git] / app / test-pmd / testpmd.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2017 Intel Corporation
3  */
4
5 #ifndef _TESTPMD_H_
6 #define _TESTPMD_H_
7
8 #include <stdbool.h>
9
10 #include <rte_pci.h>
11 #include <rte_bus_pci.h>
12 #include <rte_gro.h>
13 #include <rte_gso.h>
14 #include <rte_os_shim.h>
15 #include <cmdline.h>
16 #include <sys/queue.h>
17 #ifdef RTE_HAS_JANSSON
18 #include <jansson.h>
19 #endif
20
21 #define RTE_PORT_ALL            (~(portid_t)0x0)
22
23 #define RTE_TEST_RX_DESC_MAX    2048
24 #define RTE_TEST_TX_DESC_MAX    2048
25
26 #define RTE_PORT_STOPPED        (uint16_t)0
27 #define RTE_PORT_STARTED        (uint16_t)1
28 #define RTE_PORT_CLOSED         (uint16_t)2
29 #define RTE_PORT_HANDLING       (uint16_t)3
30
31 /*
32  * It is used to allocate the memory for hash key.
33  * The hash key size is NIC dependent.
34  */
35 #define RSS_HASH_KEY_LENGTH 64
36
37 /*
38  * Default size of the mbuf data buffer to receive standard 1518-byte
39  * Ethernet frames in a mono-segment memory buffer.
40  */
41 #define DEFAULT_MBUF_DATA_SIZE RTE_MBUF_DEFAULT_BUF_SIZE
42 /**< Default size of mbuf data buffer. */
43
44 /*
45  * The maximum number of segments per packet is used when creating
46  * scattered transmit packets composed of a list of mbufs.
47  */
48 #define RTE_MAX_SEGS_PER_PKT 255 /**< nb_segs is a 8-bit unsigned char. */
49
50 /*
51  * The maximum number of segments per packet is used to configure
52  * buffer split feature, also specifies the maximum amount of
53  * optional Rx pools to allocate mbufs to split.
54  */
55 #define MAX_SEGS_BUFFER_SPLIT 8 /**< nb_segs is a 8-bit unsigned char. */
56
57 /* The prefix of the mbuf pool names created by the application. */
58 #define MBUF_POOL_NAME_PFX "mb_pool"
59
60 #define MAX_PKT_BURST 512
61 #define DEF_PKT_BURST 32
62
63 #define DEF_MBUF_CACHE 250
64
65 #define RTE_CACHE_LINE_SIZE_ROUNDUP(size) \
66         (RTE_CACHE_LINE_SIZE * ((size + RTE_CACHE_LINE_SIZE - 1) / RTE_CACHE_LINE_SIZE))
67
68 #define NUMA_NO_CONFIG 0xFF
69 #define UMA_NO_CONFIG  0xFF
70
71 typedef uint8_t  lcoreid_t;
72 typedef uint16_t portid_t;
73 typedef uint16_t queueid_t;
74 typedef uint16_t streamid_t;
75
76 enum {
77         PORT_TOPOLOGY_PAIRED,
78         PORT_TOPOLOGY_CHAINED,
79         PORT_TOPOLOGY_LOOP,
80 };
81
82 enum {
83         MP_ALLOC_NATIVE, /**< allocate and populate mempool natively */
84         MP_ALLOC_ANON,
85         /**< allocate mempool natively, but populate using anonymous memory */
86         MP_ALLOC_XMEM,
87         /**< allocate and populate mempool using anonymous memory */
88         MP_ALLOC_XMEM_HUGE,
89         /**< allocate and populate mempool using anonymous hugepage memory */
90         MP_ALLOC_XBUF
91         /**< allocate mempool natively, use rte_pktmbuf_pool_create_extbuf */
92 };
93
94 /**
95  * The data structure associated with RX and TX packet burst statistics
96  * that are recorded for each forwarding stream.
97  */
98 struct pkt_burst_stats {
99         unsigned int pkt_burst_spread[MAX_PKT_BURST];
100 };
101
102 /** Information for a given RSS type. */
103 struct rss_type_info {
104         const char *str; /**< Type name. */
105         uint64_t rss_type; /**< Type value. */
106 };
107
108 /**
109  * RSS type information table.
110  *
111  * An entry with a NULL type name terminates the list.
112  */
113 extern const struct rss_type_info rss_type_table[];
114
115 /**
116  * Dynf name array.
117  *
118  * Array that holds the name for each dynf.
119  */
120 extern char dynf_names[64][RTE_MBUF_DYN_NAMESIZE];
121
122 /**
123  * The data structure associated with a forwarding stream between a receive
124  * port/queue and a transmit port/queue.
125  */
126 struct fwd_stream {
127         /* "read-only" data */
128         portid_t   rx_port;   /**< port to poll for received packets */
129         queueid_t  rx_queue;  /**< RX queue to poll on "rx_port" */
130         portid_t   tx_port;   /**< forwarding port of received packets */
131         queueid_t  tx_queue;  /**< TX queue to send forwarded packets */
132         streamid_t peer_addr; /**< index of peer ethernet address of packets */
133
134         unsigned int retry_enabled;
135
136         /* "read-write" results */
137         uint64_t rx_packets;  /**< received packets */
138         uint64_t tx_packets;  /**< received packets transmitted */
139         uint64_t fwd_dropped; /**< received packets not forwarded */
140         uint64_t rx_bad_ip_csum ; /**< received packets has bad ip checksum */
141         uint64_t rx_bad_l4_csum ; /**< received packets has bad l4 checksum */
142         uint64_t rx_bad_outer_l4_csum;
143         /**< received packets has bad outer l4 checksum */
144         uint64_t rx_bad_outer_ip_csum;
145         /**< received packets having bad outer ip checksum */
146         unsigned int gro_times; /**< GRO operation times */
147         uint64_t     core_cycles; /**< used for RX and TX processing */
148         struct pkt_burst_stats rx_burst_stats;
149         struct pkt_burst_stats tx_burst_stats;
150 };
151
152 /**
153  * Age action context types, must be included inside the age action
154  * context structure.
155  */
156 enum age_action_context_type {
157         ACTION_AGE_CONTEXT_TYPE_FLOW,
158         ACTION_AGE_CONTEXT_TYPE_INDIRECT_ACTION,
159 };
160
161 /** Descriptor for a single flow. */
162 struct port_flow {
163         struct port_flow *next; /**< Next flow in list. */
164         struct port_flow *tmp; /**< Temporary linking. */
165         uint32_t id; /**< Flow rule ID. */
166         struct rte_flow *flow; /**< Opaque flow object returned by PMD. */
167         struct rte_flow_conv_rule rule; /**< Saved flow rule description. */
168         enum age_action_context_type age_type; /**< Age action context type. */
169         uint8_t data[]; /**< Storage for flow rule description */
170 };
171
172 /* Descriptor for indirect action */
173 struct port_indirect_action {
174         struct port_indirect_action *next; /**< Next flow in list. */
175         uint32_t id; /**< Indirect action ID. */
176         enum rte_flow_action_type type; /**< Action type. */
177         struct rte_flow_action_handle *handle;  /**< Indirect action handle. */
178         enum age_action_context_type age_type; /**< Age action context type. */
179         /** If true, the action applies to "transfer" flows, and vice versa */
180         bool transfer;
181 };
182
183 struct port_flow_tunnel {
184         LIST_ENTRY(port_flow_tunnel) chain;
185         struct rte_flow_action *pmd_actions;
186         struct rte_flow_item   *pmd_items;
187         uint32_t id;
188         uint32_t num_pmd_actions;
189         uint32_t num_pmd_items;
190         struct rte_flow_tunnel tunnel;
191         struct rte_flow_action *actions;
192         struct rte_flow_item *items;
193 };
194
195 struct tunnel_ops {
196         uint32_t id;
197         char type[16];
198         uint32_t enabled:1;
199         uint32_t actions:1;
200         uint32_t items:1;
201 };
202
203 /** Information for an extended statistics to show. */
204 struct xstat_display_info {
205         /** Supported xstats IDs in the order of xstats_display */
206         uint64_t *ids_supp;
207         size_t   ids_supp_sz;
208         uint64_t *prev_values;
209         uint64_t *curr_values;
210         uint64_t prev_ns;
211         bool     allocated;
212 };
213
214 /**
215  * The data structure associated with each port.
216  */
217 struct rte_port {
218         struct rte_eth_dev_info dev_info;   /**< PCI info + driver name */
219         struct rte_eth_conf     dev_conf;   /**< Port configuration. */
220         struct rte_ether_addr       eth_addr;   /**< Port ethernet address */
221         struct rte_eth_stats    stats;      /**< Last port statistics */
222         unsigned int            socket_id;  /**< For NUMA support */
223         uint16_t                parse_tunnel:1; /**< Parse internal headers */
224         uint16_t                tso_segsz;  /**< Segmentation offload MSS for non-tunneled packets. */
225         uint16_t                tunnel_tso_segsz; /**< Segmentation offload MSS for tunneled pkts. */
226         uint16_t                tx_vlan_id;/**< The tag ID */
227         uint16_t                tx_vlan_id_outer;/**< The outer tag ID */
228         volatile uint16_t        port_status;    /**< port started or not */
229         uint8_t                 need_setup;     /**< port just attached */
230         uint8_t                 need_reconfig;  /**< need reconfiguring port or not */
231         uint8_t                 need_reconfig_queues; /**< need reconfiguring queues or not */
232         uint8_t                 rss_flag;   /**< enable rss or not */
233         uint8_t                 dcb_flag;   /**< enable dcb */
234         uint16_t                nb_rx_desc[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue rx desc number */
235         uint16_t                nb_tx_desc[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue tx desc number */
236         struct rte_eth_rxconf   rx_conf[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue rx configuration */
237         struct rte_eth_txconf   tx_conf[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue tx configuration */
238         struct rte_ether_addr   *mc_addr_pool; /**< pool of multicast addrs */
239         uint32_t                mc_addr_nb; /**< nb. of addr. in mc_addr_pool */
240         uint8_t                 slave_flag; /**< bonding slave port */
241         struct port_flow        *flow_list; /**< Associated flows. */
242         struct port_indirect_action *actions_list;
243         /**< Associated indirect actions. */
244         LIST_HEAD(, port_flow_tunnel) flow_tunnel_list;
245         const struct rte_eth_rxtx_callback *rx_dump_cb[RTE_MAX_QUEUES_PER_PORT+1];
246         const struct rte_eth_rxtx_callback *tx_dump_cb[RTE_MAX_QUEUES_PER_PORT+1];
247         /**< metadata value to insert in Tx packets. */
248         uint32_t                tx_metadata;
249         const struct rte_eth_rxtx_callback *tx_set_md_cb[RTE_MAX_QUEUES_PER_PORT+1];
250         /**< dynamic flags. */
251         uint64_t                mbuf_dynf;
252         const struct rte_eth_rxtx_callback *tx_set_dynf_cb[RTE_MAX_QUEUES_PER_PORT+1];
253         /** Associated port which is supposed to handle "transfer" flows */
254         portid_t                flow_transfer_proxy;
255         struct xstat_display_info xstats_info;
256 };
257
258 /**
259  * The data structure associated with each forwarding logical core.
260  * The logical cores are internally numbered by a core index from 0 to
261  * the maximum number of logical cores - 1.
262  * The system CPU identifier of all logical cores are setup in a global
263  * CPU id. configuration table.
264  */
265 struct fwd_lcore {
266         struct rte_gso_ctx gso_ctx;     /**< GSO context */
267         struct rte_mempool *mbp; /**< The mbuf pool to use by this core */
268         void *gro_ctx;          /**< GRO context */
269         streamid_t stream_idx;   /**< index of 1st stream in "fwd_streams" */
270         streamid_t stream_nb;    /**< number of streams in "fwd_streams" */
271         lcoreid_t  cpuid_idx;    /**< index of logical core in CPU id table */
272         volatile char stopped;   /**< stop forwarding when set */
273 };
274
275 /*
276  * Forwarding mode operations:
277  *   - IO forwarding mode (default mode)
278  *     Forwards packets unchanged.
279  *
280  *   - MAC forwarding mode
281  *     Set the source and the destination Ethernet addresses of packets
282  *     before forwarding them.
283  *
284  *   - IEEE1588 forwarding mode
285  *     Check that received IEEE1588 Precise Time Protocol (PTP) packets are
286  *     filtered and timestamped by the hardware.
287  *     Forwards packets unchanged on the same port.
288  *     Check that sent IEEE1588 PTP packets are timestamped by the hardware.
289  */
290 typedef int (*port_fwd_begin_t)(portid_t pi);
291 typedef void (*port_fwd_end_t)(portid_t pi);
292 typedef void (*packet_fwd_t)(struct fwd_stream *fs);
293
294 struct fwd_engine {
295         const char       *fwd_mode_name; /**< Forwarding mode name. */
296         port_fwd_begin_t port_fwd_begin; /**< NULL if nothing special to do. */
297         port_fwd_end_t   port_fwd_end;   /**< NULL if nothing special to do. */
298         packet_fwd_t     packet_fwd;     /**< Mandatory. */
299 };
300
301 #define FLEX_ITEM_MAX_SAMPLES_NUM 16
302 #define FLEX_ITEM_MAX_LINKS_NUM 16
303 #define FLEX_MAX_FLOW_PATTERN_LENGTH 64
304 #define FLEX_MAX_PARSERS_NUM 8
305 #define FLEX_MAX_PATTERNS_NUM 64
306 #define FLEX_PARSER_ERR ((struct flex_item *)-1)
307
308 struct flex_item {
309         struct rte_flow_item_flex_conf flex_conf;
310         struct rte_flow_item_flex_handle *flex_handle;
311         uint32_t flex_id;
312 };
313
314 struct flex_pattern {
315         struct rte_flow_item_flex spec, mask;
316         uint8_t spec_pattern[FLEX_MAX_FLOW_PATTERN_LENGTH];
317         uint8_t mask_pattern[FLEX_MAX_FLOW_PATTERN_LENGTH];
318 };
319 extern struct flex_item *flex_items[RTE_MAX_ETHPORTS][FLEX_MAX_PARSERS_NUM];
320 extern struct flex_pattern flex_patterns[FLEX_MAX_PATTERNS_NUM];
321
322 #define BURST_TX_WAIT_US 1
323 #define BURST_TX_RETRIES 64
324
325 extern uint32_t burst_tx_delay_time;
326 extern uint32_t burst_tx_retry_num;
327
328 extern struct fwd_engine io_fwd_engine;
329 extern struct fwd_engine mac_fwd_engine;
330 extern struct fwd_engine mac_swap_engine;
331 extern struct fwd_engine flow_gen_engine;
332 extern struct fwd_engine rx_only_engine;
333 extern struct fwd_engine tx_only_engine;
334 extern struct fwd_engine csum_fwd_engine;
335 extern struct fwd_engine icmp_echo_engine;
336 extern struct fwd_engine noisy_vnf_engine;
337 extern struct fwd_engine five_tuple_swap_fwd_engine;
338 #ifdef RTE_LIBRTE_IEEE1588
339 extern struct fwd_engine ieee1588_fwd_engine;
340 #endif
341
342 extern struct fwd_engine * fwd_engines[]; /**< NULL terminated array. */
343 extern cmdline_parse_inst_t cmd_set_raw;
344 extern cmdline_parse_inst_t cmd_show_set_raw;
345 extern cmdline_parse_inst_t cmd_show_set_raw_all;
346 extern cmdline_parse_inst_t cmd_set_flex_is_pattern;
347 extern cmdline_parse_inst_t cmd_set_flex_spec_pattern;
348
349 extern uint16_t mempool_flags;
350
351 /**
352  * Forwarding Configuration
353  *
354  */
355 struct fwd_config {
356         struct fwd_engine *fwd_eng; /**< Packet forwarding mode. */
357         streamid_t nb_fwd_streams;  /**< Nb. of forward streams to process. */
358         lcoreid_t  nb_fwd_lcores;   /**< Nb. of logical cores to launch. */
359         portid_t   nb_fwd_ports;    /**< Nb. of ports involved. */
360 };
361
362 /**
363  * DCB mode enable
364  */
365 enum dcb_mode_enable
366 {
367         DCB_VT_ENABLED,
368         DCB_ENABLED
369 };
370
371 extern uint8_t xstats_hide_zero; /**< Hide zero values for xstats display */
372
373 /* globals used for configuration */
374 extern uint8_t record_core_cycles; /**< Enables measurement of CPU cycles */
375 extern uint8_t record_burst_stats; /**< Enables display of RX and TX bursts */
376 extern uint16_t verbose_level; /**< Drives messages being displayed, if any. */
377 extern int testpmd_logtype; /**< Log type for testpmd logs */
378 extern uint8_t  interactive;
379 extern uint8_t  auto_start;
380 extern uint8_t  tx_first;
381 extern char cmdline_filename[PATH_MAX]; /**< offline commands file */
382 extern uint8_t  numa_support; /**< set by "--numa" parameter */
383 extern uint16_t port_topology; /**< set by "--port-topology" parameter */
384 extern uint8_t no_flush_rx; /**<set by "--no-flush-rx" parameter */
385 extern uint8_t flow_isolate_all; /**< set by "--flow-isolate-all */
386 extern uint8_t  mp_alloc_type;
387 /**< set by "--mp-anon" or "--mp-alloc" parameter */
388 extern uint32_t eth_link_speed;
389 extern uint8_t no_link_check; /**<set by "--disable-link-check" parameter */
390 extern uint8_t no_device_start; /**<set by "--disable-device-start" parameter */
391 extern volatile int test_done; /* stop packet forwarding when set to 1. */
392 extern uint8_t lsc_interrupt; /**< disabled by "--no-lsc-interrupt" parameter */
393 extern uint8_t rmv_interrupt; /**< disabled by "--no-rmv-interrupt" parameter */
394 extern uint32_t event_print_mask;
395 /**< set by "--print-event xxxx" and "--mask-event xxxx parameters */
396 extern bool setup_on_probe_event; /**< disabled by port setup-on iterator */
397 extern uint8_t hot_plug; /**< enable by "--hot-plug" parameter */
398 extern int do_mlockall; /**< set by "--mlockall" or "--no-mlockall" parameter */
399 extern uint8_t clear_ptypes; /**< disabled by set ptype cmd */
400
401 #ifdef RTE_LIBRTE_IXGBE_BYPASS
402 extern uint32_t bypass_timeout; /**< Store the NIC bypass watchdog timeout */
403 #endif
404
405 /*
406  * Store specified sockets on which memory pool to be used by ports
407  * is allocated.
408  */
409 extern uint8_t port_numa[RTE_MAX_ETHPORTS];
410
411 /*
412  * Store specified sockets on which RX ring to be used by ports
413  * is allocated.
414  */
415 extern uint8_t rxring_numa[RTE_MAX_ETHPORTS];
416
417 /*
418  * Store specified sockets on which TX ring to be used by ports
419  * is allocated.
420  */
421 extern uint8_t txring_numa[RTE_MAX_ETHPORTS];
422
423 extern uint8_t socket_num;
424
425 /*
426  * Configuration of logical cores:
427  * nb_fwd_lcores <= nb_cfg_lcores <= nb_lcores
428  */
429 extern lcoreid_t nb_lcores; /**< Number of logical cores probed at init time. */
430 extern lcoreid_t nb_cfg_lcores; /**< Number of configured logical cores. */
431 extern lcoreid_t nb_fwd_lcores; /**< Number of forwarding logical cores. */
432 extern unsigned int fwd_lcores_cpuids[RTE_MAX_LCORE];
433 extern unsigned int num_sockets;
434 extern unsigned int socket_ids[RTE_MAX_NUMA_NODES];
435
436 /*
437  * Configuration of Ethernet ports:
438  * nb_fwd_ports <= nb_cfg_ports <= nb_ports
439  */
440 extern portid_t nb_ports; /**< Number of ethernet ports probed at init time. */
441 extern portid_t nb_cfg_ports; /**< Number of configured ports. */
442 extern portid_t nb_fwd_ports; /**< Number of forwarding ports. */
443 extern portid_t fwd_ports_ids[RTE_MAX_ETHPORTS];
444 extern struct rte_port *ports;
445
446 extern struct rte_eth_rxmode rx_mode;
447 extern struct rte_eth_txmode tx_mode;
448
449 extern uint64_t rss_hf;
450
451 extern queueid_t nb_hairpinq;
452 extern queueid_t nb_rxq;
453 extern queueid_t nb_txq;
454
455 extern uint16_t nb_rxd;
456 extern uint16_t nb_txd;
457
458 extern int16_t rx_free_thresh;
459 extern int8_t rx_drop_en;
460 extern int16_t tx_free_thresh;
461 extern int16_t tx_rs_thresh;
462
463 extern uint16_t noisy_tx_sw_bufsz;
464 extern uint16_t noisy_tx_sw_buf_flush_time;
465 extern uint64_t noisy_lkup_mem_sz;
466 extern uint64_t noisy_lkup_num_writes;
467 extern uint64_t noisy_lkup_num_reads;
468 extern uint64_t noisy_lkup_num_reads_writes;
469
470 extern uint8_t dcb_config;
471
472 extern uint32_t mbuf_data_size_n;
473 extern uint16_t mbuf_data_size[MAX_SEGS_BUFFER_SPLIT];
474 /**< Mbuf data space size. */
475 extern uint32_t param_total_num_mbufs;
476
477 extern uint16_t stats_period;
478
479 extern struct rte_eth_xstat_name *xstats_display;
480 extern unsigned int xstats_display_num;
481
482 extern uint16_t hairpin_mode;
483
484 #ifdef RTE_LIB_LATENCYSTATS
485 extern uint8_t latencystats_enabled;
486 extern lcoreid_t latencystats_lcore_id;
487 #endif
488
489 #ifdef RTE_LIB_BITRATESTATS
490 extern lcoreid_t bitrate_lcore_id;
491 extern uint8_t bitrate_enabled;
492 #endif
493
494 extern struct rte_fdir_conf fdir_conf;
495
496 extern uint32_t max_rx_pkt_len;
497
498 /*
499  * Configuration of packet segments used to scatter received packets
500  * if some of split features is configured.
501  */
502 extern uint16_t rx_pkt_seg_lengths[MAX_SEGS_BUFFER_SPLIT];
503 extern uint8_t  rx_pkt_nb_segs; /**< Number of segments to split */
504 extern uint16_t rx_pkt_seg_offsets[MAX_SEGS_BUFFER_SPLIT];
505 extern uint8_t  rx_pkt_nb_offs; /**< Number of specified offsets */
506
507 /*
508  * Configuration of packet segments used by the "txonly" processing engine.
509  */
510 #define TXONLY_DEF_PACKET_LEN 64
511 extern uint16_t tx_pkt_length; /**< Length of TXONLY packet */
512 extern uint16_t tx_pkt_seg_lengths[RTE_MAX_SEGS_PER_PKT]; /**< Seg. lengths */
513 extern uint8_t  tx_pkt_nb_segs; /**< Number of segments in TX packets */
514 extern uint32_t tx_pkt_times_intra;
515 extern uint32_t tx_pkt_times_inter;
516
517 enum tx_pkt_split {
518         TX_PKT_SPLIT_OFF,
519         TX_PKT_SPLIT_ON,
520         TX_PKT_SPLIT_RND,
521 };
522
523 extern enum tx_pkt_split tx_pkt_split;
524
525 extern uint8_t txonly_multi_flow;
526
527 extern uint32_t rxq_share;
528
529 extern uint16_t nb_pkt_per_burst;
530 extern uint16_t nb_pkt_flowgen_clones;
531 extern int nb_flows_flowgen;
532 extern uint16_t mb_mempool_cache;
533 extern int8_t rx_pthresh;
534 extern int8_t rx_hthresh;
535 extern int8_t rx_wthresh;
536 extern int8_t tx_pthresh;
537 extern int8_t tx_hthresh;
538 extern int8_t tx_wthresh;
539
540 extern uint16_t tx_udp_src_port;
541 extern uint16_t tx_udp_dst_port;
542
543 extern uint32_t tx_ip_src_addr;
544 extern uint32_t tx_ip_dst_addr;
545
546 extern struct fwd_config cur_fwd_config;
547 extern struct fwd_engine *cur_fwd_eng;
548 extern uint32_t retry_enabled;
549 extern struct fwd_lcore  **fwd_lcores;
550 extern struct fwd_stream **fwd_streams;
551
552 extern uint16_t vxlan_gpe_udp_port; /**< UDP port of tunnel VXLAN-GPE. */
553 extern uint16_t geneve_udp_port; /**< UDP port of tunnel GENEVE. */
554
555 extern portid_t nb_peer_eth_addrs; /**< Number of peer ethernet addresses. */
556 extern struct rte_ether_addr peer_eth_addrs[RTE_MAX_ETHPORTS];
557
558 extern uint32_t burst_tx_delay_time; /**< Burst tx delay time(us) for mac-retry. */
559 extern uint32_t burst_tx_retry_num;  /**< Burst tx retry number for mac-retry. */
560
561 #define GRO_DEFAULT_ITEM_NUM_PER_FLOW 32
562 #define GRO_DEFAULT_FLOW_NUM (RTE_GRO_MAX_BURST_ITEM_NUM / \
563                 GRO_DEFAULT_ITEM_NUM_PER_FLOW)
564
565 #define GRO_DEFAULT_FLUSH_CYCLES 1
566 #define GRO_MAX_FLUSH_CYCLES 4
567
568 struct gro_status {
569         struct rte_gro_param param;
570         uint8_t enable;
571 };
572 extern struct gro_status gro_ports[RTE_MAX_ETHPORTS];
573 extern uint8_t gro_flush_cycles;
574
575 #define GSO_MAX_PKT_BURST 2048
576 struct gso_status {
577         uint8_t enable;
578 };
579 extern struct gso_status gso_ports[RTE_MAX_ETHPORTS];
580 extern uint16_t gso_max_segment_size;
581
582 /* VXLAN encap/decap parameters. */
583 struct vxlan_encap_conf {
584         uint32_t select_ipv4:1;
585         uint32_t select_vlan:1;
586         uint32_t select_tos_ttl:1;
587         uint8_t vni[3];
588         rte_be16_t udp_src;
589         rte_be16_t udp_dst;
590         rte_be32_t ipv4_src;
591         rte_be32_t ipv4_dst;
592         uint8_t ipv6_src[16];
593         uint8_t ipv6_dst[16];
594         rte_be16_t vlan_tci;
595         uint8_t ip_tos;
596         uint8_t ip_ttl;
597         uint8_t eth_src[RTE_ETHER_ADDR_LEN];
598         uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
599 };
600
601 extern struct vxlan_encap_conf vxlan_encap_conf;
602
603 /* NVGRE encap/decap parameters. */
604 struct nvgre_encap_conf {
605         uint32_t select_ipv4:1;
606         uint32_t select_vlan:1;
607         uint8_t tni[3];
608         rte_be32_t ipv4_src;
609         rte_be32_t ipv4_dst;
610         uint8_t ipv6_src[16];
611         uint8_t ipv6_dst[16];
612         rte_be16_t vlan_tci;
613         uint8_t eth_src[RTE_ETHER_ADDR_LEN];
614         uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
615 };
616
617 extern struct nvgre_encap_conf nvgre_encap_conf;
618
619 /* L2 encap parameters. */
620 struct l2_encap_conf {
621         uint32_t select_ipv4:1;
622         uint32_t select_vlan:1;
623         rte_be16_t vlan_tci;
624         uint8_t eth_src[RTE_ETHER_ADDR_LEN];
625         uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
626 };
627 extern struct l2_encap_conf l2_encap_conf;
628
629 /* L2 decap parameters. */
630 struct l2_decap_conf {
631         uint32_t select_vlan:1;
632 };
633 extern struct l2_decap_conf l2_decap_conf;
634
635 /* MPLSoGRE encap parameters. */
636 struct mplsogre_encap_conf {
637         uint32_t select_ipv4:1;
638         uint32_t select_vlan:1;
639         uint8_t label[3];
640         rte_be32_t ipv4_src;
641         rte_be32_t ipv4_dst;
642         uint8_t ipv6_src[16];
643         uint8_t ipv6_dst[16];
644         rte_be16_t vlan_tci;
645         uint8_t eth_src[RTE_ETHER_ADDR_LEN];
646         uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
647 };
648 extern struct mplsogre_encap_conf mplsogre_encap_conf;
649
650 /* MPLSoGRE decap parameters. */
651 struct mplsogre_decap_conf {
652         uint32_t select_ipv4:1;
653         uint32_t select_vlan:1;
654 };
655 extern struct mplsogre_decap_conf mplsogre_decap_conf;
656
657 /* MPLSoUDP encap parameters. */
658 struct mplsoudp_encap_conf {
659         uint32_t select_ipv4:1;
660         uint32_t select_vlan:1;
661         uint8_t label[3];
662         rte_be16_t udp_src;
663         rte_be16_t udp_dst;
664         rte_be32_t ipv4_src;
665         rte_be32_t ipv4_dst;
666         uint8_t ipv6_src[16];
667         uint8_t ipv6_dst[16];
668         rte_be16_t vlan_tci;
669         uint8_t eth_src[RTE_ETHER_ADDR_LEN];
670         uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
671 };
672 extern struct mplsoudp_encap_conf mplsoudp_encap_conf;
673
674 /* MPLSoUDP decap parameters. */
675 struct mplsoudp_decap_conf {
676         uint32_t select_ipv4:1;
677         uint32_t select_vlan:1;
678 };
679 extern struct mplsoudp_decap_conf mplsoudp_decap_conf;
680
681 extern enum rte_eth_rx_mq_mode rx_mq_mode;
682
683 extern struct rte_flow_action_conntrack conntrack_context;
684
685 extern int proc_id;
686 extern unsigned int num_procs;
687
688 static inline bool
689 is_proc_primary(void)
690 {
691         return rte_eal_process_type() == RTE_PROC_PRIMARY;
692 }
693
694 static inline unsigned int
695 lcore_num(void)
696 {
697         unsigned int i;
698
699         for (i = 0; i < RTE_MAX_LCORE; ++i)
700                 if (fwd_lcores_cpuids[i] == rte_lcore_id())
701                         return i;
702
703         rte_panic("lcore_id of current thread not found in fwd_lcores_cpuids\n");
704 }
705
706 void
707 parse_fwd_portlist(const char *port);
708
709 static inline struct fwd_lcore *
710 current_fwd_lcore(void)
711 {
712         return fwd_lcores[lcore_num()];
713 }
714
715 /* Mbuf Pools */
716 static inline void
717 mbuf_poolname_build(unsigned int sock_id, char *mp_name,
718                     int name_size, uint16_t idx)
719 {
720         if (!idx)
721                 snprintf(mp_name, name_size,
722                          MBUF_POOL_NAME_PFX "_%u", sock_id);
723         else
724                 snprintf(mp_name, name_size,
725                          MBUF_POOL_NAME_PFX "_%hu_%hu", (uint16_t)sock_id, idx);
726 }
727
728 static inline struct rte_mempool *
729 mbuf_pool_find(unsigned int sock_id, uint16_t idx)
730 {
731         char pool_name[RTE_MEMPOOL_NAMESIZE];
732
733         mbuf_poolname_build(sock_id, pool_name, sizeof(pool_name), idx);
734         return rte_mempool_lookup((const char *)pool_name);
735 }
736
737 /**
738  * Read/Write operations on a PCI register of a port.
739  */
740 static inline uint32_t
741 port_pci_reg_read(struct rte_port *port, uint32_t reg_off)
742 {
743         const struct rte_pci_device *pci_dev;
744         const struct rte_bus *bus;
745         void *reg_addr;
746         uint32_t reg_v;
747
748         if (!port->dev_info.device) {
749                 fprintf(stderr, "Invalid device\n");
750                 return 0;
751         }
752
753         bus = rte_bus_find_by_device(port->dev_info.device);
754         if (bus && !strcmp(bus->name, "pci")) {
755                 pci_dev = RTE_DEV_TO_PCI(port->dev_info.device);
756         } else {
757                 fprintf(stderr, "Not a PCI device\n");
758                 return 0;
759         }
760
761         reg_addr = ((char *)pci_dev->mem_resource[0].addr + reg_off);
762         reg_v = *((volatile uint32_t *)reg_addr);
763         return rte_le_to_cpu_32(reg_v);
764 }
765
766 #define port_id_pci_reg_read(pt_id, reg_off) \
767         port_pci_reg_read(&ports[(pt_id)], (reg_off))
768
769 static inline void
770 port_pci_reg_write(struct rte_port *port, uint32_t reg_off, uint32_t reg_v)
771 {
772         const struct rte_pci_device *pci_dev;
773         const struct rte_bus *bus;
774         void *reg_addr;
775
776         if (!port->dev_info.device) {
777                 fprintf(stderr, "Invalid device\n");
778                 return;
779         }
780
781         bus = rte_bus_find_by_device(port->dev_info.device);
782         if (bus && !strcmp(bus->name, "pci")) {
783                 pci_dev = RTE_DEV_TO_PCI(port->dev_info.device);
784         } else {
785                 fprintf(stderr, "Not a PCI device\n");
786                 return;
787         }
788
789         reg_addr = ((char *)pci_dev->mem_resource[0].addr + reg_off);
790         *((volatile uint32_t *)reg_addr) = rte_cpu_to_le_32(reg_v);
791 }
792
793 #define port_id_pci_reg_write(pt_id, reg_off, reg_value) \
794         port_pci_reg_write(&ports[(pt_id)], (reg_off), (reg_value))
795
796 static inline void
797 get_start_cycles(uint64_t *start_tsc)
798 {
799         if (record_core_cycles)
800                 *start_tsc = rte_rdtsc();
801 }
802
803 static inline void
804 get_end_cycles(struct fwd_stream *fs, uint64_t start_tsc)
805 {
806         if (record_core_cycles)
807                 fs->core_cycles += rte_rdtsc() - start_tsc;
808 }
809
810 static inline void
811 inc_rx_burst_stats(struct fwd_stream *fs, uint16_t nb_rx)
812 {
813         if (record_burst_stats)
814                 fs->rx_burst_stats.pkt_burst_spread[nb_rx]++;
815 }
816
817 static inline void
818 inc_tx_burst_stats(struct fwd_stream *fs, uint16_t nb_tx)
819 {
820         if (record_burst_stats)
821                 fs->tx_burst_stats.pkt_burst_spread[nb_tx]++;
822 }
823
824 /* Prototypes */
825 unsigned int parse_item_list(const char *str, const char *item_name,
826                         unsigned int max_items,
827                         unsigned int *parsed_items, int check_unique_values);
828 void launch_args_parse(int argc, char** argv);
829 void cmdline_read_from_file(const char *filename);
830 void prompt(void);
831 void prompt_exit(void);
832 void nic_stats_display(portid_t port_id);
833 void nic_stats_clear(portid_t port_id);
834 void nic_xstats_display(portid_t port_id);
835 void nic_xstats_clear(portid_t port_id);
836 void device_infos_display(const char *identifier);
837 void port_infos_display(portid_t port_id);
838 void port_summary_display(portid_t port_id);
839 void port_eeprom_display(portid_t port_id);
840 void port_module_eeprom_display(portid_t port_id);
841 void port_summary_header_display(void);
842 void rx_queue_infos_display(portid_t port_idi, uint16_t queue_id);
843 void tx_queue_infos_display(portid_t port_idi, uint16_t queue_id);
844 void fwd_lcores_config_display(void);
845 void pkt_fwd_config_display(struct fwd_config *cfg);
846 void rxtx_config_display(void);
847 void fwd_config_setup(void);
848 void set_def_fwd_config(void);
849 void reconfig(portid_t new_port_id, unsigned socket_id);
850 int init_fwd_streams(void);
851 void update_fwd_ports(portid_t new_pid);
852
853 void set_fwd_eth_peer(portid_t port_id, char *peer_addr);
854
855 void port_mtu_set(portid_t port_id, uint16_t mtu);
856 void port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_pos);
857 void port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
858                       uint8_t bit_v);
859 void port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
860                                 uint8_t bit1_pos, uint8_t bit2_pos);
861 void port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
862                             uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value);
863 void port_reg_display(portid_t port_id, uint32_t reg_off);
864 void port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t value);
865 int port_action_handle_create(portid_t port_id, uint32_t id,
866                               const struct rte_flow_indir_action_conf *conf,
867                               const struct rte_flow_action *action);
868 int port_action_handle_destroy(portid_t port_id,
869                                uint32_t n, const uint32_t *action);
870 struct rte_flow_action_handle *port_action_handle_get_by_id(portid_t port_id,
871                                                             uint32_t id);
872 int port_action_handle_update(portid_t port_id, uint32_t id,
873                               const struct rte_flow_action *action);
874 int port_flow_validate(portid_t port_id,
875                        const struct rte_flow_attr *attr,
876                        const struct rte_flow_item *pattern,
877                        const struct rte_flow_action *actions,
878                        const struct tunnel_ops *tunnel_ops);
879 int port_flow_create(portid_t port_id,
880                      const struct rte_flow_attr *attr,
881                      const struct rte_flow_item *pattern,
882                      const struct rte_flow_action *actions,
883                      const struct tunnel_ops *tunnel_ops);
884 int port_action_handle_query(portid_t port_id, uint32_t id);
885 void update_age_action_context(const struct rte_flow_action *actions,
886                      struct port_flow *pf);
887 int port_flow_destroy(portid_t port_id, uint32_t n, const uint32_t *rule);
888 int port_flow_flush(portid_t port_id);
889 int port_flow_dump(portid_t port_id, bool dump_all,
890                         uint32_t rule, const char *file_name);
891 int port_flow_query(portid_t port_id, uint32_t rule,
892                     const struct rte_flow_action *action);
893 void port_flow_list(portid_t port_id, uint32_t n, const uint32_t *group);
894 void port_flow_aged(portid_t port_id, uint8_t destroy);
895 const char *port_flow_tunnel_type(struct rte_flow_tunnel *tunnel);
896 struct port_flow_tunnel *
897 port_flow_locate_tunnel(uint16_t port_id, struct rte_flow_tunnel *tun);
898 void port_flow_tunnel_list(portid_t port_id);
899 void port_flow_tunnel_destroy(portid_t port_id, uint32_t tunnel_id);
900 void port_flow_tunnel_create(portid_t port_id, const struct tunnel_ops *ops);
901 int port_flow_isolate(portid_t port_id, int set);
902 int port_meter_policy_add(portid_t port_id, uint32_t policy_id,
903                 const struct rte_flow_action *actions);
904
905 void rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id);
906 void tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id);
907
908 int set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc);
909 int set_fwd_lcores_mask(uint64_t lcoremask);
910 void set_fwd_lcores_number(uint16_t nb_lc);
911
912 void set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt);
913 void set_fwd_ports_mask(uint64_t portmask);
914 void set_fwd_ports_number(uint16_t nb_pt);
915 int port_is_forwarding(portid_t port_id);
916
917 void rx_vlan_strip_set(portid_t port_id, int on);
918 void rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on);
919
920 void rx_vlan_filter_set(portid_t port_id, int on);
921 void rx_vlan_all_filter_set(portid_t port_id, int on);
922 void rx_vlan_qinq_strip_set(portid_t port_id, int on);
923 int rx_vft_set(portid_t port_id, uint16_t vlan_id, int on);
924 void vlan_extend_set(portid_t port_id, int on);
925 void vlan_tpid_set(portid_t port_id, enum rte_vlan_type vlan_type,
926                    uint16_t tp_id);
927 void tx_vlan_set(portid_t port_id, uint16_t vlan_id);
928 void tx_qinq_set(portid_t port_id, uint16_t vlan_id, uint16_t vlan_id_outer);
929 void tx_vlan_reset(portid_t port_id);
930 void tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on);
931
932 void set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value);
933
934 void set_xstats_hide_zero(uint8_t on_off);
935
936 void set_record_core_cycles(uint8_t on_off);
937 void set_record_burst_stats(uint8_t on_off);
938 void set_verbose_level(uint16_t vb_level);
939 void set_rx_pkt_segments(unsigned int *seg_lengths, unsigned int nb_segs);
940 void show_rx_pkt_segments(void);
941 void set_rx_pkt_offsets(unsigned int *seg_offsets, unsigned int nb_offs);
942 void show_rx_pkt_offsets(void);
943 void set_tx_pkt_segments(unsigned int *seg_lengths, unsigned int nb_segs);
944 void show_tx_pkt_segments(void);
945 void set_tx_pkt_times(unsigned int *tx_times);
946 void show_tx_pkt_times(void);
947 void set_tx_pkt_split(const char *name);
948 int parse_fec_mode(const char *name, uint32_t *fec_capa);
949 void show_fec_capability(uint32_t num, struct rte_eth_fec_capa *speed_fec_capa);
950 void set_nb_pkt_per_burst(uint16_t pkt_burst);
951 char *list_pkt_forwarding_modes(void);
952 char *list_pkt_forwarding_retry_modes(void);
953 void set_pkt_forwarding_mode(const char *fwd_mode);
954 void start_packet_forwarding(int with_tx_first);
955 void fwd_stats_display(void);
956 void fwd_stats_reset(void);
957 void stop_packet_forwarding(void);
958 void dev_set_link_up(portid_t pid);
959 void dev_set_link_down(portid_t pid);
960 void init_port_config(void);
961 void set_port_slave_flag(portid_t slave_pid);
962 void clear_port_slave_flag(portid_t slave_pid);
963 uint8_t port_is_bonding_slave(portid_t slave_pid);
964
965 int init_port_dcb_config(portid_t pid, enum dcb_mode_enable dcb_mode,
966                      enum rte_eth_nb_tcs num_tcs,
967                      uint8_t pfc_en);
968 int start_port(portid_t pid);
969 void stop_port(portid_t pid);
970 void close_port(portid_t pid);
971 void reset_port(portid_t pid);
972 void attach_port(char *identifier);
973 void detach_devargs(char *identifier);
974 void detach_port_device(portid_t port_id);
975 int all_ports_stopped(void);
976 int port_is_stopped(portid_t port_id);
977 int port_is_started(portid_t port_id);
978 void pmd_test_exit(void);
979 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
980 void fdir_get_infos(portid_t port_id);
981 #endif
982 void fdir_set_flex_mask(portid_t port_id,
983                            struct rte_eth_fdir_flex_mask *cfg);
984 void fdir_set_flex_payload(portid_t port_id,
985                            struct rte_eth_flex_payload_cfg *cfg);
986 void port_rss_reta_info(portid_t port_id,
987                         struct rte_eth_rss_reta_entry64 *reta_conf,
988                         uint16_t nb_entries);
989
990 void set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on);
991
992 int
993 rx_queue_setup(uint16_t port_id, uint16_t rx_queue_id,
994                uint16_t nb_rx_desc, unsigned int socket_id,
995                struct rte_eth_rxconf *rx_conf, struct rte_mempool *mp);
996
997 int set_queue_rate_limit(portid_t port_id, uint16_t queue_idx, uint16_t rate);
998 int set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate,
999                                 uint64_t q_msk);
1000
1001 void port_rss_hash_conf_show(portid_t port_id, int show_rss_key);
1002 void port_rss_hash_key_update(portid_t port_id, char rss_type[],
1003                               uint8_t *hash_key, uint8_t hash_key_len);
1004 int rx_queue_id_is_invalid(queueid_t rxq_id);
1005 int tx_queue_id_is_invalid(queueid_t txq_id);
1006 void setup_gro(const char *onoff, portid_t port_id);
1007 void setup_gro_flush_cycles(uint8_t cycles);
1008 void show_gro(portid_t port_id);
1009 void setup_gso(const char *mode, portid_t port_id);
1010 int eth_dev_info_get_print_err(uint16_t port_id,
1011                         struct rte_eth_dev_info *dev_info);
1012 int eth_dev_conf_get_print_err(uint16_t port_id,
1013                         struct rte_eth_conf *dev_conf);
1014 void eth_set_promisc_mode(uint16_t port_id, int enable);
1015 void eth_set_allmulticast_mode(uint16_t port, int enable);
1016 int eth_link_get_nowait_print_err(uint16_t port_id, struct rte_eth_link *link);
1017 int eth_macaddr_get_print_err(uint16_t port_id,
1018                         struct rte_ether_addr *mac_addr);
1019
1020 /* Functions to display the set of MAC addresses added to a port*/
1021 void show_macs(portid_t port_id);
1022 void show_mcast_macs(portid_t port_id);
1023
1024 /* Functions to manage the set of filtered Multicast MAC addresses */
1025 void mcast_addr_add(portid_t port_id, struct rte_ether_addr *mc_addr);
1026 void mcast_addr_remove(portid_t port_id, struct rte_ether_addr *mc_addr);
1027 void port_dcb_info_display(portid_t port_id);
1028
1029 uint8_t *open_file(const char *file_path, uint32_t *size);
1030 int save_file(const char *file_path, uint8_t *buf, uint32_t size);
1031 int close_file(uint8_t *buf);
1032
1033 void port_queue_region_info_display(portid_t port_id, void *buf);
1034
1035 enum print_warning {
1036         ENABLED_WARN = 0,
1037         DISABLED_WARN
1038 };
1039 int port_id_is_invalid(portid_t port_id, enum print_warning warning);
1040 void print_valid_ports(void);
1041 int new_socket_id(unsigned int socket_id);
1042
1043 queueid_t get_allowed_max_nb_rxq(portid_t *pid);
1044 int check_nb_rxq(queueid_t rxq);
1045 queueid_t get_allowed_max_nb_txq(portid_t *pid);
1046 int check_nb_txq(queueid_t txq);
1047 int check_nb_rxd(queueid_t rxd);
1048 int check_nb_txd(queueid_t txd);
1049 queueid_t get_allowed_max_nb_hairpinq(portid_t *pid);
1050 int check_nb_hairpinq(queueid_t hairpinq);
1051
1052 uint16_t dump_rx_pkts(uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[],
1053                       uint16_t nb_pkts, __rte_unused uint16_t max_pkts,
1054                       __rte_unused void *user_param);
1055
1056 uint16_t dump_tx_pkts(uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[],
1057                       uint16_t nb_pkts, __rte_unused void *user_param);
1058
1059 void add_rx_dump_callbacks(portid_t portid);
1060 void remove_rx_dump_callbacks(portid_t portid);
1061 void add_tx_dump_callbacks(portid_t portid);
1062 void remove_tx_dump_callbacks(portid_t portid);
1063 void configure_rxtx_dump_callbacks(uint16_t verbose);
1064
1065 uint16_t tx_pkt_set_md(uint16_t port_id, __rte_unused uint16_t queue,
1066                        struct rte_mbuf *pkts[], uint16_t nb_pkts,
1067                        __rte_unused void *user_param);
1068 void add_tx_md_callback(portid_t portid);
1069 void remove_tx_md_callback(portid_t portid);
1070
1071 uint16_t tx_pkt_set_dynf(uint16_t port_id, __rte_unused uint16_t queue,
1072                          struct rte_mbuf *pkts[], uint16_t nb_pkts,
1073                          __rte_unused void *user_param);
1074 void add_tx_dynf_callback(portid_t portid);
1075 void remove_tx_dynf_callback(portid_t portid);
1076 int update_mtu_from_frame_size(portid_t portid, uint32_t max_rx_pktlen);
1077 int update_jumbo_frame_offload(portid_t portid);
1078 void flex_item_create(portid_t port_id, uint16_t flex_id, const char *filename);
1079 void flex_item_destroy(portid_t port_id, uint16_t flex_id);
1080 void port_flex_item_flush(portid_t port_id);
1081
1082 extern int flow_parse(const char *src, void *result, unsigned int size,
1083                       struct rte_flow_attr **attr,
1084                       struct rte_flow_item **pattern,
1085                       struct rte_flow_action **actions);
1086
1087 /*
1088  * Work-around of a compilation error with ICC on invocations of the
1089  * rte_be_to_cpu_16() function.
1090  */
1091 #ifdef __GCC__
1092 #define RTE_BE_TO_CPU_16(be_16_v)  rte_be_to_cpu_16((be_16_v))
1093 #define RTE_CPU_TO_BE_16(cpu_16_v) rte_cpu_to_be_16((cpu_16_v))
1094 #else
1095 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1096 #define RTE_BE_TO_CPU_16(be_16_v)  (be_16_v)
1097 #define RTE_CPU_TO_BE_16(cpu_16_v) (cpu_16_v)
1098 #else
1099 #define RTE_BE_TO_CPU_16(be_16_v) \
1100         (uint16_t) ((((be_16_v) & 0xFF) << 8) | ((be_16_v) >> 8))
1101 #define RTE_CPU_TO_BE_16(cpu_16_v) \
1102         (uint16_t) ((((cpu_16_v) & 0xFF) << 8) | ((cpu_16_v) >> 8))
1103 #endif
1104 #endif /* __GCC__ */
1105
1106 #define TESTPMD_LOG(level, fmt, args...) \
1107         rte_log(RTE_LOG_ ## level, testpmd_logtype, "testpmd: " fmt, ## args)
1108
1109 #endif /* _TESTPMD_H_ */