DPDK
20.05.0
|
#include <stdint.h>
#include <rte_compat.h>
#include <rte_log.h>
#include <rte_interrupts.h>
#include <rte_dev.h>
#include <rte_devargs.h>
#include <rte_errno.h>
#include <rte_common.h>
#include <rte_config.h>
#include <rte_ether.h>
#include "rte_ethdev_trace_fp.h"
#include "rte_dev_info.h"
#include "rte_eth_ctrl.h"
#include <rte_ethdev_core.h>
Go to the source code of this file.
Data Structures | |
struct | rte_eth_stats |
struct | rte_eth_link |
struct | rte_eth_thresh |
struct | rte_eth_rxmode |
struct | rte_vlan_filter_conf |
struct | rte_eth_rss_conf |
struct | rte_eth_vlan_mirror |
struct | rte_eth_mirror_conf |
struct | rte_eth_rss_reta_entry64 |
struct | rte_eth_vmdq_dcb_conf |
struct | rte_eth_vmdq_rx_conf |
struct | rte_eth_txmode |
struct | rte_eth_rxconf |
struct | rte_eth_txconf |
struct | rte_eth_hairpin_cap |
struct | rte_eth_hairpin_peer |
struct | rte_eth_hairpin_conf |
struct | rte_eth_desc_lim |
struct | rte_eth_fc_conf |
struct | rte_eth_pfc_conf |
struct | rte_fdir_conf |
struct | rte_eth_udp_tunnel |
struct | rte_intr_conf |
struct | rte_eth_conf |
struct | rte_eth_dev_portconf |
struct | rte_eth_switch_info |
struct | rte_eth_dev_info |
struct | rte_eth_rxq_info |
struct | rte_eth_txq_info |
struct | rte_eth_burst_mode |
struct | rte_eth_xstat |
struct | rte_eth_xstat_name |
struct | rte_eth_dcb_tc_queue_mapping |
struct | rte_eth_dcb_info |
struct | rte_eth_dev_tx_buffer |
struct | rte_eth_event_ipsec_desc |
Typedefs | |
typedef uint16_t(* | rte_rx_callback_fn) (uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[], uint16_t nb_pkts, uint16_t max_pkts, void *user_param) |
typedef uint16_t(* | rte_tx_callback_fn) (uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[], uint16_t nb_pkts, void *user_param) |
typedef int(* | rte_eth_dev_cb_fn) (uint16_t port_id, enum rte_eth_event_type event, void *cb_arg, void *ret_param) |
Functions | |
int | rte_eth_iterator_init (struct rte_dev_iterator *iter, const char *devargs) |
uint16_t | rte_eth_iterator_next (struct rte_dev_iterator *iter) |
void | rte_eth_iterator_cleanup (struct rte_dev_iterator *iter) |
__extension__ struct rte_eth_link | __rte_aligned (8) |
static uint64_t | rte_eth_rss_hf_refine (uint64_t rss_hf) |
uint64_t | rte_eth_find_next_owned_by (uint16_t port_id, const uint64_t owner_id) |
uint16_t | rte_eth_find_next (uint16_t port_id) |
__rte_experimental uint16_t | rte_eth_find_next_of (uint16_t port_id_start, const struct rte_device *parent) |
__rte_experimental uint16_t | rte_eth_find_next_sibling (uint16_t port_id_start, uint16_t ref_port_id) |
__rte_experimental int | rte_eth_dev_owner_new (uint64_t *owner_id) |
__rte_experimental int | rte_eth_dev_owner_set (const uint16_t port_id, const struct rte_eth_dev_owner *owner) |
__rte_experimental int | rte_eth_dev_owner_unset (const uint16_t port_id, const uint64_t owner_id) |
__rte_experimental int | rte_eth_dev_owner_delete (const uint64_t owner_id) |
__rte_experimental int | rte_eth_dev_owner_get (const uint16_t port_id, struct rte_eth_dev_owner *owner) |
uint16_t | rte_eth_dev_count_avail (void) |
uint16_t | rte_eth_dev_count_total (void) |
uint32_t | rte_eth_speed_bitflag (uint32_t speed, int duplex) |
const char * | rte_eth_dev_rx_offload_name (uint64_t offload) |
const char * | rte_eth_dev_tx_offload_name (uint64_t offload) |
int | rte_eth_dev_configure (uint16_t port_id, uint16_t nb_rx_queue, uint16_t nb_tx_queue, const struct rte_eth_conf *eth_conf) |
__rte_experimental int | rte_eth_dev_is_removed (uint16_t port_id) |
int | rte_eth_rx_queue_setup (uint16_t port_id, uint16_t rx_queue_id, uint16_t nb_rx_desc, unsigned int socket_id, const struct rte_eth_rxconf *rx_conf, struct rte_mempool *mb_pool) |
__rte_experimental int | rte_eth_rx_hairpin_queue_setup (uint16_t port_id, uint16_t rx_queue_id, uint16_t nb_rx_desc, const struct rte_eth_hairpin_conf *conf) |
int | rte_eth_tx_queue_setup (uint16_t port_id, uint16_t tx_queue_id, uint16_t nb_tx_desc, unsigned int socket_id, const struct rte_eth_txconf *tx_conf) |
__rte_experimental int | rte_eth_tx_hairpin_queue_setup (uint16_t port_id, uint16_t tx_queue_id, uint16_t nb_tx_desc, const struct rte_eth_hairpin_conf *conf) |
int | rte_eth_dev_socket_id (uint16_t port_id) |
int | rte_eth_dev_is_valid_port (uint16_t port_id) |
int | rte_eth_dev_rx_queue_start (uint16_t port_id, uint16_t rx_queue_id) |
int | rte_eth_dev_rx_queue_stop (uint16_t port_id, uint16_t rx_queue_id) |
int | rte_eth_dev_tx_queue_start (uint16_t port_id, uint16_t tx_queue_id) |
int | rte_eth_dev_tx_queue_stop (uint16_t port_id, uint16_t tx_queue_id) |
int | rte_eth_dev_start (uint16_t port_id) |
void | rte_eth_dev_stop (uint16_t port_id) |
int | rte_eth_dev_set_link_up (uint16_t port_id) |
int | rte_eth_dev_set_link_down (uint16_t port_id) |
void | rte_eth_dev_close (uint16_t port_id) |
int | rte_eth_dev_reset (uint16_t port_id) |
int | rte_eth_promiscuous_enable (uint16_t port_id) |
int | rte_eth_promiscuous_disable (uint16_t port_id) |
int | rte_eth_promiscuous_get (uint16_t port_id) |
int | rte_eth_allmulticast_enable (uint16_t port_id) |
int | rte_eth_allmulticast_disable (uint16_t port_id) |
int | rte_eth_allmulticast_get (uint16_t port_id) |
int | rte_eth_link_get (uint16_t port_id, struct rte_eth_link *link) |
int | rte_eth_link_get_nowait (uint16_t port_id, struct rte_eth_link *link) |
int | rte_eth_stats_get (uint16_t port_id, struct rte_eth_stats *stats) |
int | rte_eth_stats_reset (uint16_t port_id) |
int | rte_eth_xstats_get_names (uint16_t port_id, struct rte_eth_xstat_name *xstats_names, unsigned int size) |
int | rte_eth_xstats_get (uint16_t port_id, struct rte_eth_xstat *xstats, unsigned int n) |
int | rte_eth_xstats_get_names_by_id (uint16_t port_id, struct rte_eth_xstat_name *xstats_names, unsigned int size, uint64_t *ids) |
int | rte_eth_xstats_get_by_id (uint16_t port_id, const uint64_t *ids, uint64_t *values, unsigned int size) |
int | rte_eth_xstats_get_id_by_name (uint16_t port_id, const char *xstat_name, uint64_t *id) |
int | rte_eth_xstats_reset (uint16_t port_id) |
int | rte_eth_dev_set_tx_queue_stats_mapping (uint16_t port_id, uint16_t tx_queue_id, uint8_t stat_idx) |
int | rte_eth_dev_set_rx_queue_stats_mapping (uint16_t port_id, uint16_t rx_queue_id, uint8_t stat_idx) |
int | rte_eth_macaddr_get (uint16_t port_id, struct rte_ether_addr *mac_addr) |
int | rte_eth_dev_info_get (uint16_t port_id, struct rte_eth_dev_info *dev_info) |
int | rte_eth_dev_fw_version_get (uint16_t port_id, char *fw_version, size_t fw_size) |
int | rte_eth_dev_get_supported_ptypes (uint16_t port_id, uint32_t ptype_mask, uint32_t *ptypes, int num) |
__rte_experimental int | rte_eth_dev_set_ptypes (uint16_t port_id, uint32_t ptype_mask, uint32_t *set_ptypes, unsigned int num) |
int | rte_eth_dev_get_mtu (uint16_t port_id, uint16_t *mtu) |
int | rte_eth_dev_set_mtu (uint16_t port_id, uint16_t mtu) |
int | rte_eth_dev_vlan_filter (uint16_t port_id, uint16_t vlan_id, int on) |
int | rte_eth_dev_set_vlan_strip_on_queue (uint16_t port_id, uint16_t rx_queue_id, int on) |
int | rte_eth_dev_set_vlan_ether_type (uint16_t port_id, enum rte_vlan_type vlan_type, uint16_t tag_type) |
int | rte_eth_dev_set_vlan_offload (uint16_t port_id, int offload_mask) |
int | rte_eth_dev_get_vlan_offload (uint16_t port_id) |
int | rte_eth_dev_set_vlan_pvid (uint16_t port_id, uint16_t pvid, int on) |
int | rte_eth_tx_buffer_init (struct rte_eth_dev_tx_buffer *buffer, uint16_t size) |
int | rte_eth_tx_buffer_set_err_callback (struct rte_eth_dev_tx_buffer *buffer, buffer_tx_error_fn callback, void *userdata) |
void | rte_eth_tx_buffer_drop_callback (struct rte_mbuf **pkts, uint16_t unsent, void *userdata) |
void | rte_eth_tx_buffer_count_callback (struct rte_mbuf **pkts, uint16_t unsent, void *userdata) |
int | rte_eth_tx_done_cleanup (uint16_t port_id, uint16_t queue_id, uint32_t free_cnt) |
int | rte_eth_dev_callback_register (uint16_t port_id, enum rte_eth_event_type event, rte_eth_dev_cb_fn cb_fn, void *cb_arg) |
int | rte_eth_dev_callback_unregister (uint16_t port_id, enum rte_eth_event_type event, rte_eth_dev_cb_fn cb_fn, void *cb_arg) |
int | rte_eth_dev_rx_intr_enable (uint16_t port_id, uint16_t queue_id) |
int | rte_eth_dev_rx_intr_disable (uint16_t port_id, uint16_t queue_id) |
int | rte_eth_dev_rx_intr_ctl (uint16_t port_id, int epfd, int op, void *data) |
int | rte_eth_dev_rx_intr_ctl_q (uint16_t port_id, uint16_t queue_id, int epfd, int op, void *data) |
__rte_experimental int | rte_eth_dev_rx_intr_ctl_q_get_fd (uint16_t port_id, uint16_t queue_id) |
int | rte_eth_led_on (uint16_t port_id) |
int | rte_eth_led_off (uint16_t port_id) |
int | rte_eth_dev_flow_ctrl_get (uint16_t port_id, struct rte_eth_fc_conf *fc_conf) |
int | rte_eth_dev_flow_ctrl_set (uint16_t port_id, struct rte_eth_fc_conf *fc_conf) |
int | rte_eth_dev_priority_flow_ctrl_set (uint16_t port_id, struct rte_eth_pfc_conf *pfc_conf) |
int | rte_eth_dev_mac_addr_add (uint16_t port_id, struct rte_ether_addr *mac_addr, uint32_t pool) |
int | rte_eth_dev_mac_addr_remove (uint16_t port_id, struct rte_ether_addr *mac_addr) |
int | rte_eth_dev_default_mac_addr_set (uint16_t port_id, struct rte_ether_addr *mac_addr) |
int | rte_eth_dev_rss_reta_update (uint16_t port_id, struct rte_eth_rss_reta_entry64 *reta_conf, uint16_t reta_size) |
int | rte_eth_dev_rss_reta_query (uint16_t port_id, struct rte_eth_rss_reta_entry64 *reta_conf, uint16_t reta_size) |
int | rte_eth_dev_uc_hash_table_set (uint16_t port_id, struct rte_ether_addr *addr, uint8_t on) |
int | rte_eth_dev_uc_all_hash_table_set (uint16_t port_id, uint8_t on) |
int | rte_eth_mirror_rule_set (uint16_t port_id, struct rte_eth_mirror_conf *mirror_conf, uint8_t rule_id, uint8_t on) |
int | rte_eth_mirror_rule_reset (uint16_t port_id, uint8_t rule_id) |
int | rte_eth_set_queue_rate_limit (uint16_t port_id, uint16_t queue_idx, uint16_t tx_rate) |
int | rte_eth_dev_rss_hash_update (uint16_t port_id, struct rte_eth_rss_conf *rss_conf) |
int | rte_eth_dev_rss_hash_conf_get (uint16_t port_id, struct rte_eth_rss_conf *rss_conf) |
int | rte_eth_dev_udp_tunnel_port_add (uint16_t port_id, struct rte_eth_udp_tunnel *tunnel_udp) |
int | rte_eth_dev_udp_tunnel_port_delete (uint16_t port_id, struct rte_eth_udp_tunnel *tunnel_udp) |
__rte_deprecated int | rte_eth_dev_filter_supported (uint16_t port_id, enum rte_filter_type filter_type) |
__rte_deprecated int | rte_eth_dev_filter_ctrl (uint16_t port_id, enum rte_filter_type filter_type, enum rte_filter_op filter_op, void *arg) |
int | rte_eth_dev_get_dcb_info (uint16_t port_id, struct rte_eth_dcb_info *dcb_info) |
const struct rte_eth_rxtx_callback * | rte_eth_add_rx_callback (uint16_t port_id, uint16_t queue_id, rte_rx_callback_fn fn, void *user_param) |
const struct rte_eth_rxtx_callback * | rte_eth_add_first_rx_callback (uint16_t port_id, uint16_t queue_id, rte_rx_callback_fn fn, void *user_param) |
const struct rte_eth_rxtx_callback * | rte_eth_add_tx_callback (uint16_t port_id, uint16_t queue_id, rte_tx_callback_fn fn, void *user_param) |
int | rte_eth_remove_rx_callback (uint16_t port_id, uint16_t queue_id, const struct rte_eth_rxtx_callback *user_cb) |
int | rte_eth_remove_tx_callback (uint16_t port_id, uint16_t queue_id, const struct rte_eth_rxtx_callback *user_cb) |
int | rte_eth_rx_queue_info_get (uint16_t port_id, uint16_t queue_id, struct rte_eth_rxq_info *qinfo) |
int | rte_eth_tx_queue_info_get (uint16_t port_id, uint16_t queue_id, struct rte_eth_txq_info *qinfo) |
__rte_experimental int | rte_eth_rx_burst_mode_get (uint16_t port_id, uint16_t queue_id, struct rte_eth_burst_mode *mode) |
__rte_experimental int | rte_eth_tx_burst_mode_get (uint16_t port_id, uint16_t queue_id, struct rte_eth_burst_mode *mode) |
int | rte_eth_dev_get_reg_info (uint16_t port_id, struct rte_dev_reg_info *info) |
int | rte_eth_dev_get_eeprom_length (uint16_t port_id) |
int | rte_eth_dev_get_eeprom (uint16_t port_id, struct rte_dev_eeprom_info *info) |
int | rte_eth_dev_set_eeprom (uint16_t port_id, struct rte_dev_eeprom_info *info) |
__rte_experimental int | rte_eth_dev_get_module_info (uint16_t port_id, struct rte_eth_dev_module_info *modinfo) |
__rte_experimental int | rte_eth_dev_get_module_eeprom (uint16_t port_id, struct rte_dev_eeprom_info *info) |
int | rte_eth_dev_set_mc_addr_list (uint16_t port_id, struct rte_ether_addr *mc_addr_set, uint32_t nb_mc_addr) |
int | rte_eth_timesync_enable (uint16_t port_id) |
int | rte_eth_timesync_disable (uint16_t port_id) |
int | rte_eth_timesync_read_rx_timestamp (uint16_t port_id, struct timespec *timestamp, uint32_t flags) |
int | rte_eth_timesync_read_tx_timestamp (uint16_t port_id, struct timespec *timestamp) |
int | rte_eth_timesync_adjust_time (uint16_t port_id, int64_t delta) |
int | rte_eth_timesync_read_time (uint16_t port_id, struct timespec *time) |
int | rte_eth_timesync_write_time (uint16_t port_id, const struct timespec *time) |
__rte_experimental int | rte_eth_read_clock (uint16_t port_id, uint64_t *clock) |
int | rte_eth_dev_l2_tunnel_eth_type_conf (uint16_t port_id, struct rte_eth_l2_tunnel_conf *l2_tunnel) |
int | rte_eth_dev_l2_tunnel_offload_set (uint16_t port_id, struct rte_eth_l2_tunnel_conf *l2_tunnel, uint32_t mask, uint8_t en) |
int | rte_eth_dev_get_port_by_name (const char *name, uint16_t *port_id) |
int | rte_eth_dev_get_name_by_port (uint16_t port_id, char *name) |
int | rte_eth_dev_adjust_nb_rx_tx_desc (uint16_t port_id, uint16_t *nb_rx_desc, uint16_t *nb_tx_desc) |
int | rte_eth_dev_pool_ops_supported (uint16_t port_id, const char *pool) |
void * | rte_eth_dev_get_sec_ctx (uint16_t port_id) |
__rte_experimental int | rte_eth_dev_hairpin_capability_get (uint16_t port_id, struct rte_eth_hairpin_cap *cap) |
static uint16_t | rte_eth_rx_burst (uint16_t port_id, uint16_t queue_id, struct rte_mbuf **rx_pkts, const uint16_t nb_pkts) |
static int | rte_eth_rx_queue_count (uint16_t port_id, uint16_t queue_id) |
static int | rte_eth_rx_descriptor_done (uint16_t port_id, uint16_t queue_id, uint16_t offset) |
static int | rte_eth_rx_descriptor_status (uint16_t port_id, uint16_t queue_id, uint16_t offset) |
static int | rte_eth_tx_descriptor_status (uint16_t port_id, uint16_t queue_id, uint16_t offset) |
static uint16_t | rte_eth_tx_burst (uint16_t port_id, uint16_t queue_id, struct rte_mbuf **tx_pkts, uint16_t nb_pkts) |
static uint16_t | rte_eth_tx_prepare (uint16_t port_id, uint16_t queue_id, struct rte_mbuf **tx_pkts, uint16_t nb_pkts) |
static uint16_t | rte_eth_tx_buffer_flush (uint16_t port_id, uint16_t queue_id, struct rte_eth_dev_tx_buffer *buffer) |
static __rte_always_inline uint16_t | rte_eth_tx_buffer (uint16_t port_id, uint16_t queue_id, struct rte_eth_dev_tx_buffer *buffer, struct rte_mbuf *tx_pkt) |
Variables | |
uint32_t | link_speed |
uint16_t | link_duplex |
uint16_t | link_autoneg |
uint16_t | link_status |
RTE Ethernet Device API
The Ethernet Device API is composed of two parts:
By default, all the functions of the Ethernet Device API exported by a PMD are lock-free functions which assume to not be invoked in parallel on different logical cores to work on the same target object. For instance, the receive function of a PMD cannot be invoked in parallel on two logical cores to poll the same RX queue [of the same port]. Of course, this function can be invoked in parallel by different logical cores on different RX queues. It is the responsibility of the upper level application to enforce this rule.
If needed, parallel accesses by multiple logical cores to shared queues shall be explicitly protected by dedicated inline lock-aware functions built on top of their corresponding lock-free functions of the PMD API.
In all functions of the Ethernet API, the Ethernet device is designated by an integer >= 0 named the device port identifier.
At the Ethernet driver level, Ethernet devices are represented by a generic data structure of type rte_eth_dev.
Ethernet devices are dynamically registered during the PCI probing phase performed at EAL initialization time. When an Ethernet device is being probed, an rte_eth_dev structure and a new port identifier are allocated for that device. Then, the eth_dev_init() function supplied by the Ethernet driver matching the probed PCI device is invoked to properly initialize the device.
The role of the device init function consists of resetting the hardware, checking access to Non-volatile Memory (NVM), reading the MAC address from NVM etc.
If the device init operation is successful, the correspondence between the port identifier assigned to the new device and its associated rte_eth_dev structure is effectively registered. Otherwise, both the rte_eth_dev structure and the port identifier are freed.
The functions exported by the application Ethernet API to setup a device designated by its port identifier must be invoked in the following order:
Then, the network application can invoke, in any order, the functions exported by the Ethernet API to get the MAC address of a given device, to get the speed and the status of a device physical link, to receive/transmit [burst of] packets, and so on.
If the application wants to change the configuration (i.e. call rte_eth_dev_configure(), rte_eth_tx_queue_setup(), or rte_eth_rx_queue_setup()), it must call rte_eth_dev_stop() first to stop the device and then do the reconfiguration before calling rte_eth_dev_start() again. The transmit and receive functions should not be invoked when the device is stopped.
Please note that some configuration is not stored between calls to rte_eth_dev_stop()/rte_eth_dev_start(). The following configuration will be retained:
- MTU - flow control settings - receive mode configuration (promiscuous mode, all-multicast mode, hardware checksum mode, RSS/VMDQ settings etc.) - VLAN filtering configuration - default MAC address - MAC addresses supplied to MAC address array - flow director filtering mode (but not filtering rules) - NIC queue statistics mappings
Any other configuration will not be stored and will need to be re-entered before a call to rte_eth_dev_start().
Finally, a network application can close an Ethernet device by invoking the rte_eth_dev_close() function.
Each function of the application Ethernet API invokes a specific function of the PMD that controls the target device designated by its port identifier. For this purpose, all device-specific functions of an Ethernet driver are supplied through a set of pointers contained in a generic structure of type eth_dev_ops. The address of the eth_dev_ops structure is stored in the rte_eth_dev structure by the device init function of the Ethernet driver, which is invoked during the PCI probing phase, as explained earlier.
In other words, each function of the Ethernet API simply retrieves the rte_eth_dev structure associated with the device port identifier and performs an indirect invocation of the corresponding driver function supplied in the eth_dev_ops structure of the rte_eth_dev structure.
For performance reasons, the address of the burst-oriented RX and TX functions of the Ethernet driver are not contained in the eth_dev_ops structure. Instead, they are directly stored at the beginning of the rte_eth_dev structure to avoid an extra indirect memory access during their invocation.
RTE ethernet device drivers do not use interrupts for transmitting or receiving. Instead, Ethernet drivers export Poll-Mode receive and transmit functions to applications. Both receive and transmit functions are packet-burst oriented to minimize their cost per packet through the following optimizations:
The burst-oriented receive function does not provide any error notification, to avoid the corresponding overhead. As a hint, the upper-level application might check the status of the device link once being systematically returned a 0 value by the receive function of the driver for a given number of tries.
Definition in file rte_ethdev.h.
#define RTE_ETH_FOREACH_MATCHING_DEV | ( | id, | |
devargs, | |||
iter | |||
) |
Macro to iterate over all ethdev ports matching some devargs.
If a break is done before the end of the loop, the function rte_eth_iterator_cleanup() must be called.
id | Iterated port id of type uint16_t. |
devargs | Device parameters input as string of type char*. |
iter | Iterator handle of type struct rte_dev_iterator, used internally. |
Definition at line 232 of file rte_ethdev.h.
#define ETH_LINK_SPEED_AUTONEG (0 << 0) |
Device supported speeds bitmap flagsAutonegotiate (all speeds)
Definition at line 271 of file rte_ethdev.h.
#define ETH_LINK_SPEED_FIXED (1 << 0) |
Disable autoneg (fixed speed)
Definition at line 272 of file rte_ethdev.h.
#define ETH_LINK_SPEED_10M_HD (1 << 1) |
10 Mbps half-duplex
Definition at line 273 of file rte_ethdev.h.
#define ETH_LINK_SPEED_10M (1 << 2) |
10 Mbps full-duplex
Definition at line 274 of file rte_ethdev.h.
#define ETH_LINK_SPEED_100M_HD (1 << 3) |
100 Mbps half-duplex
Definition at line 275 of file rte_ethdev.h.
#define ETH_LINK_SPEED_100M (1 << 4) |
100 Mbps full-duplex
Definition at line 276 of file rte_ethdev.h.
#define ETH_LINK_SPEED_1G (1 << 5) |
1 Gbps
Definition at line 277 of file rte_ethdev.h.
#define ETH_LINK_SPEED_2_5G (1 << 6) |
2.5 Gbps
Definition at line 278 of file rte_ethdev.h.
#define ETH_LINK_SPEED_5G (1 << 7) |
5 Gbps
Definition at line 279 of file rte_ethdev.h.
#define ETH_LINK_SPEED_10G (1 << 8) |
10 Gbps
Definition at line 280 of file rte_ethdev.h.
#define ETH_LINK_SPEED_20G (1 << 9) |
20 Gbps
Definition at line 281 of file rte_ethdev.h.
#define ETH_LINK_SPEED_25G (1 << 10) |
25 Gbps
Definition at line 282 of file rte_ethdev.h.
#define ETH_LINK_SPEED_40G (1 << 11) |
40 Gbps
Definition at line 283 of file rte_ethdev.h.
#define ETH_LINK_SPEED_50G (1 << 12) |
50 Gbps
Definition at line 284 of file rte_ethdev.h.
#define ETH_LINK_SPEED_56G (1 << 13) |
56 Gbps
Definition at line 285 of file rte_ethdev.h.
#define ETH_LINK_SPEED_100G (1 << 14) |
100 Gbps
Definition at line 286 of file rte_ethdev.h.
#define ETH_LINK_SPEED_200G (1 << 15) |
200 Gbps
Definition at line 287 of file rte_ethdev.h.
#define ETH_SPEED_NUM_NONE 0 |
Ethernet numeric link speeds in MbpsNot defined
Definition at line 292 of file rte_ethdev.h.
#define ETH_SPEED_NUM_10M 10 |
10 Mbps
Definition at line 293 of file rte_ethdev.h.
#define ETH_SPEED_NUM_100M 100 |
100 Mbps
Definition at line 294 of file rte_ethdev.h.
#define ETH_SPEED_NUM_1G 1000 |
1 Gbps
Definition at line 295 of file rte_ethdev.h.
#define ETH_SPEED_NUM_2_5G 2500 |
2.5 Gbps
Definition at line 296 of file rte_ethdev.h.
#define ETH_SPEED_NUM_5G 5000 |
5 Gbps
Definition at line 297 of file rte_ethdev.h.
#define ETH_SPEED_NUM_10G 10000 |
10 Gbps
Definition at line 298 of file rte_ethdev.h.
#define ETH_SPEED_NUM_20G 20000 |
20 Gbps
Definition at line 299 of file rte_ethdev.h.
#define ETH_SPEED_NUM_25G 25000 |
25 Gbps
Definition at line 300 of file rte_ethdev.h.
#define ETH_SPEED_NUM_40G 40000 |
40 Gbps
Definition at line 301 of file rte_ethdev.h.
#define ETH_SPEED_NUM_50G 50000 |
50 Gbps
Definition at line 302 of file rte_ethdev.h.
#define ETH_SPEED_NUM_56G 56000 |
56 Gbps
Definition at line 303 of file rte_ethdev.h.
#define ETH_SPEED_NUM_100G 100000 |
100 Gbps
Definition at line 304 of file rte_ethdev.h.
#define ETH_SPEED_NUM_200G 200000 |
200 Gbps
Definition at line 305 of file rte_ethdev.h.
#define ETH_LINK_HALF_DUPLEX 0 |
Half-duplex connection (see link_duplex).
Definition at line 319 of file rte_ethdev.h.
#define ETH_LINK_FULL_DUPLEX 1 |
Full-duplex connection (see link_duplex).
Definition at line 320 of file rte_ethdev.h.
#define ETH_LINK_DOWN 0 |
Link is down (see link_status).
Definition at line 321 of file rte_ethdev.h.
#define ETH_LINK_UP 1 |
Link is up (see link_status).
Definition at line 322 of file rte_ethdev.h.
#define ETH_LINK_FIXED 0 |
No autonegotiation (see link_autoneg).
Definition at line 323 of file rte_ethdev.h.
#define ETH_LINK_AUTONEG 1 |
Autonegotiated (see link_autoneg).
Definition at line 324 of file rte_ethdev.h.
#define ETH_MQ_RX_RSS_FLAG 0x1 |
Simple flags are used for rte_eth_conf.rxmode.mq_mode.
Definition at line 339 of file rte_ethdev.h.
#define ETH_RSS ETH_MQ_RX_RSS |
for rx mq mode backward compatible
Definition at line 372 of file rte_ethdev.h.
#define ETH_DCB_NONE ETH_MQ_TX_NONE |
for tx mq mode backward compatible
Definition at line 390 of file rte_ethdev.h.
#define RTE_ETH_FLOW_PORT 18 |
Consider device port number as a flow differentiator
Definition at line 483 of file rte_ethdev.h.
#define RTE_ETH_FLOW_VXLAN 19 |
VXLAN protocol based flow
Definition at line 485 of file rte_ethdev.h.
#define RTE_ETH_FLOW_GENEVE 20 |
GENEVE protocol based flow
Definition at line 486 of file rte_ethdev.h.
#define RTE_ETH_FLOW_NVGRE 21 |
NVGRE protocol based flow
Definition at line 487 of file rte_ethdev.h.
#define RTE_ETH_FLOW_VXLAN_GPE 22 |
VXLAN-GPE protocol based flow
Definition at line 488 of file rte_ethdev.h.
#define RTE_ETH_FLOW_GTPU 23 |
GTPU protocol based flow
Definition at line 489 of file rte_ethdev.h.
#define ETH_RSS_VLAN |
Mask of valid RSS hash protocols
Definition at line 592 of file rte_ethdev.h.
#define ETH_VMDQ_MAX_VLAN_FILTERS 64 |
Maximum nb. of VMDQ vlan filters.
Definition at line 631 of file rte_ethdev.h.
#define ETH_DCB_NUM_USER_PRIORITIES 8 |
Maximum nb. of DCB priorities.
Definition at line 632 of file rte_ethdev.h.
#define ETH_VMDQ_DCB_NUM_QUEUES 128 |
Maximum nb. of VMDQ DCB queues.
Definition at line 633 of file rte_ethdev.h.
#define ETH_DCB_NUM_QUEUES 128 |
Maximum nb. of DCB queues.
Definition at line 634 of file rte_ethdev.h.
#define ETH_DCB_PG_SUPPORT 0x00000001 |
Priority Group(ETS) support.
Definition at line 637 of file rte_ethdev.h.
#define ETH_DCB_PFC_SUPPORT 0x00000002 |
Priority Flow Control support.
Definition at line 638 of file rte_ethdev.h.
#define ETH_VLAN_STRIP_OFFLOAD 0x0001 |
VLAN Strip On/Off
Definition at line 641 of file rte_ethdev.h.
#define ETH_VLAN_FILTER_OFFLOAD 0x0002 |
VLAN Filter On/Off
Definition at line 642 of file rte_ethdev.h.
#define ETH_VLAN_EXTEND_OFFLOAD 0x0004 |
VLAN Extend On/Off
Definition at line 643 of file rte_ethdev.h.
#define ETH_QINQ_STRIP_OFFLOAD 0x0008 |
QINQ Strip On/Off
Definition at line 644 of file rte_ethdev.h.
#define ETH_VLAN_STRIP_MASK 0x0001 |
VLAN Strip setting mask
Definition at line 647 of file rte_ethdev.h.
#define ETH_VLAN_FILTER_MASK 0x0002 |
VLAN Filter setting mask
Definition at line 648 of file rte_ethdev.h.
#define ETH_VLAN_EXTEND_MASK 0x0004 |
VLAN Extend setting mask
Definition at line 649 of file rte_ethdev.h.
#define ETH_QINQ_STRIP_MASK 0x0008 |
QINQ Strip setting mask
Definition at line 650 of file rte_ethdev.h.
#define ETH_VLAN_ID_MAX 0x0FFF |
VLAN ID is in lower 12 bits
Definition at line 651 of file rte_ethdev.h.
#define ETH_NUM_RECEIVE_MAC_ADDR 128 |
Maximum nb. of receive mac addr.
Definition at line 654 of file rte_ethdev.h.
#define ETH_VMDQ_NUM_UC_HASH_ARRAY 128 |
Maximum nb. of UC hash array.
Definition at line 657 of file rte_ethdev.h.
#define ETH_VMDQ_ACCEPT_UNTAG 0x0001 |
accept untagged packets.
Definition at line 660 of file rte_ethdev.h.
#define ETH_VMDQ_ACCEPT_HASH_MC 0x0002 |
accept packets in multicast table .
Definition at line 661 of file rte_ethdev.h.
#define ETH_VMDQ_ACCEPT_HASH_UC 0x0004 |
accept packets in unicast table.
Definition at line 662 of file rte_ethdev.h.
#define ETH_VMDQ_ACCEPT_BROADCAST 0x0008 |
accept broadcast packets.
Definition at line 663 of file rte_ethdev.h.
#define ETH_VMDQ_ACCEPT_MULTICAST 0x0010 |
multicast promiscuous.
Definition at line 664 of file rte_ethdev.h.
#define ETH_MIRROR_MAX_VLANS 64 |
Maximum nb. of vlan per mirror rule
Definition at line 667 of file rte_ethdev.h.
#define ETH_MIRROR_VIRTUAL_POOL_UP 0x01 |
Virtual Pool uplink Mirroring.
Definition at line 669 of file rte_ethdev.h.
#define ETH_MIRROR_UPLINK_PORT 0x02 |
Uplink Port Mirroring.
Definition at line 670 of file rte_ethdev.h.
#define ETH_MIRROR_DOWNLINK_PORT 0x04 |
Downlink Port Mirroring.
Definition at line 671 of file rte_ethdev.h.
#define ETH_MIRROR_VLAN 0x08 |
VLAN Mirroring.
Definition at line 672 of file rte_ethdev.h.
#define ETH_MIRROR_VIRTUAL_POOL_DOWN 0x10 |
Virtual Pool downlink Mirroring.
Definition at line 673 of file rte_ethdev.h.
#define DEV_RX_OFFLOAD_VLAN_STRIP 0x00000001 |
RX offload capabilities of a device.
Definition at line 1104 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_VLAN_INSERT 0x00000001 |
TX offload capabilities of a device.
Definition at line 1140 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM 0x00000080 |
Used for tunneling packet.
Definition at line 1147 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_VXLAN_TNL_TSO 0x00000200 |
Used for tunneling packet.
Definition at line 1149 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_GRE_TNL_TSO 0x00000400 |
Used for tunneling packet.
Definition at line 1150 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_IPIP_TNL_TSO 0x00000800 |
Used for tunneling packet.
Definition at line 1151 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_GENEVE_TNL_TSO 0x00001000 |
Used for tunneling packet.
Definition at line 1152 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_MT_LOCKFREE 0x00004000 |
Multiple threads can invoke rte_eth_tx_burst() concurrently on the same tx queue without SW lock.
Definition at line 1154 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_MULTI_SEGS 0x00008000 |
Device supports multi segment send.
Definition at line 1158 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_MBUF_FAST_FREE 0x00010000 |
Device supports optimization for fast release of mbufs. When set application must guarantee that per-queue all mbufs comes from the same mempool and has refcnt = 1.
Definition at line 1160 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_UDP_TNL_TSO 0x00040000 |
Device supports generic UDP tunneled packet TSO. Application must set PKT_TX_TUNNEL_UDP and other mbuf fields required for tunnel TSO.
Definition at line 1171 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_IP_TNL_TSO 0x00080000 |
Device supports generic IP tunneled packet TSO. Application must set PKT_TX_TUNNEL_IP and other mbuf fields required for tunnel TSO.
Definition at line 1177 of file rte_ethdev.h.
#define DEV_TX_OFFLOAD_OUTER_UDP_CKSUM 0x00100000 |
Device supports outer UDP checksum
Definition at line 1179 of file rte_ethdev.h.
#define RTE_ETH_DEV_CAPA_RUNTIME_RX_QUEUE_SETUP 0x00000001 |
Device supports Rx queue setup after device started
Definition at line 1181 of file rte_ethdev.h.
#define RTE_ETH_DEV_CAPA_RUNTIME_TX_QUEUE_SETUP 0x00000002 |
Device supports Tx queue setup after device started
Definition at line 1183 of file rte_ethdev.h.
#define RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID (UINT16_MAX) |
Default values for switch domain id when ethdev does not support switch domain definitions.
Definition at line 1216 of file rte_ethdev.h.
#define RTE_ETH_BURST_FLAG_PER_QUEUE (1ULL << 0) |
If the queues have different burst mode description, this bit will be set by PMD, then the application can iterate to retrieve burst description for all other queues.
Definition at line 1329 of file rte_ethdev.h.
#define RTE_ETH_BURST_MODE_INFO_SIZE 1024 |
Maximum size for information
Definition at line 1338 of file rte_ethdev.h.
#define RTE_ETH_XSTATS_NAME_SIZE 64 |
Maximum name length for extended statistics counters
Definition at line 1343 of file rte_ethdev.h.
#define ETH_L2_TUNNEL_ENABLE_MASK 0x00000001 |
l2 tunnel configuration.< l2 tunnel enable mask l2 tunnel insertion mask
Definition at line 1424 of file rte_ethdev.h.
#define ETH_L2_TUNNEL_INSERTION_MASK 0x00000002 |
l2 tunnel stripping mask
Definition at line 1426 of file rte_ethdev.h.
#define ETH_L2_TUNNEL_STRIPPING_MASK 0x00000004 |
l2 tunnel forwarding mask
Definition at line 1428 of file rte_ethdev.h.
#define RTE_ETH_DEV_CLOSE_REMOVE 0x0001 |
Port is released (i.e. totally freed and data erased) on close. Temporary flag for PMD migration to new rte_eth_dev_close() behaviour.
Definition at line 1516 of file rte_ethdev.h.
#define RTE_ETH_DEV_INTR_LSC 0x0002 |
Device supports link state interrupt
Definition at line 1518 of file rte_ethdev.h.
#define RTE_ETH_DEV_BONDED_SLAVE 0x0004 |
Device is a bonded slave
Definition at line 1520 of file rte_ethdev.h.
#define RTE_ETH_DEV_INTR_RMV 0x0008 |
Device supports device removal interrupt
Definition at line 1522 of file rte_ethdev.h.
#define RTE_ETH_DEV_REPRESENTOR 0x0010 |
Device is port representor
Definition at line 1524 of file rte_ethdev.h.
#define RTE_ETH_DEV_NOLIVE_MAC_ADDR 0x0020 |
Device does not support MAC change after started
Definition at line 1526 of file rte_ethdev.h.
#define RTE_ETH_FOREACH_DEV_OWNED_BY | ( | p, | |
o | |||
) |
Macro to iterate over all enabled ethdev ports owned by a specific owner.
Definition at line 1545 of file rte_ethdev.h.
#define RTE_ETH_FOREACH_DEV | ( | p | ) | RTE_ETH_FOREACH_DEV_OWNED_BY(p, RTE_ETH_DEV_NO_OWNER) |
Macro to iterate over all enabled and ownerless ethdev ports.
Definition at line 1563 of file rte_ethdev.h.
#define RTE_ETH_FOREACH_DEV_OF | ( | port_id, | |
parent | |||
) |
Macro to iterate over all ethdev ports of a specified device.
port_id | The id of the matching port being iterated. |
parent | The rte_device pointer matching the iterated ports. |
Definition at line 1593 of file rte_ethdev.h.
#define RTE_ETH_FOREACH_DEV_SIBLING | ( | port_id, | |
ref_port_id | |||
) |
Macro to iterate over all ethdev ports sharing the same rte_device as the specified port. Note: the specified reference port is part of the loop iterations.
port_id | The id of the matching port being iterated. |
ref_port_id | The id of the port being compared. |
Definition at line 1627 of file rte_ethdev.h.
#define RTE_ETH_TX_BUFFER_SIZE | ( | sz | ) | (sizeof(struct rte_eth_dev_tx_buffer) + (sz) * sizeof(struct rte_mbuf *)) |
Calculate the size of the tx buffer.
sz | Number of stored packets. |
Definition at line 2854 of file rte_ethdev.h.
#define RTE_ETH_RX_DESC_AVAIL 0 |
Desc available for hw.
Definition at line 4476 of file rte_ethdev.h.
#define RTE_ETH_RX_DESC_DONE 1 |
Desc done, filled by hw.
Definition at line 4477 of file rte_ethdev.h.
#define RTE_ETH_RX_DESC_UNAVAIL 2 |
Desc used by driver or hw.
Definition at line 4478 of file rte_ethdev.h.
#define RTE_ETH_TX_DESC_FULL 0 |
Desc filled for hw, waiting xmit.
Definition at line 4534 of file rte_ethdev.h.
#define RTE_ETH_TX_DESC_DONE 1 |
Desc done, packet is transmitted.
Definition at line 4535 of file rte_ethdev.h.
#define RTE_ETH_TX_DESC_UNAVAIL 2 |
Desc used by driver or hw.
Definition at line 4536 of file rte_ethdev.h.
typedef uint16_t(* rte_rx_callback_fn) (uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[], uint16_t nb_pkts, uint16_t max_pkts, void *user_param) |
Function type used for RX packet processing packet callbacks.
The callback function is called on RX with a burst of packets that have been received on the given port and queue.
port_id | The Ethernet port on which RX is being performed. |
queue | The queue on the Ethernet port which is being used to receive the packets. |
pkts | The burst of packets that have just been received. |
nb_pkts | The number of packets in the burst pointed to by "pkts". |
max_pkts | The max number of packets that can be stored in the "pkts" array. |
user_param | The arbitrary user parameter passed in by the application when the callback was originally configured. |
Definition at line 1454 of file rte_ethdev.h.
typedef uint16_t(* rte_tx_callback_fn) (uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[], uint16_t nb_pkts, void *user_param) |
Function type used for TX packet processing packet callbacks.
The callback function is called on TX with a burst of packets immediately before the packets are put onto the hardware queue for transmission.
port_id | The Ethernet port on which TX is being performed. |
queue | The queue on the Ethernet port which is being used to transmit the packets. |
pkts | The burst of packets that are about to be transmitted. |
nb_pkts | The number of packets in the burst pointed to by "pkts". |
user_param | The arbitrary user parameter passed in by the application when the callback was originally configured. |
Definition at line 1478 of file rte_ethdev.h.
typedef int(* rte_eth_dev_cb_fn) (uint16_t port_id, enum rte_eth_event_type event, void *cb_arg, void *ret_param) |
user application callback to be registered for interrupts
Definition at line 3039 of file rte_ethdev.h.
enum rte_eth_rx_mq_mode |
A set of values to identify what method is to be used to route packets to multiple queues.
Definition at line 347 of file rte_ethdev.h.
enum rte_eth_tx_mq_mode |
A set of values to identify what method is to be used to transmit packets using multi-TCs.
Enumerator | |
---|---|
ETH_MQ_TX_NONE |
It is in neither DCB nor VT mode. |
ETH_MQ_TX_DCB |
For TX side,only DCB is on. |
ETH_MQ_TX_VMDQ_DCB |
For TX side,both DCB and VT is on. |
ETH_MQ_TX_VMDQ_ONLY |
Only VT on, no DCB |
Definition at line 380 of file rte_ethdev.h.
enum rte_vlan_type |
VLAN types to indicate if it is for single VLAN, inner VLAN or outer VLAN. Note that single VLAN is treated the same as inner VLAN.
Enumerator | |
---|---|
ETH_VLAN_TYPE_INNER |
Inner VLAN. |
ETH_VLAN_TYPE_OUTER |
Single VLAN, or outer VLAN. |
Definition at line 419 of file rte_ethdev.h.
enum rte_eth_nb_tcs |
This enum indicates the possible number of traffic classes in DCB configurations
Enumerator | |
---|---|
ETH_4_TCS |
4 TCs with DCB. |
ETH_8_TCS |
8 TCs with DCB. |
Definition at line 712 of file rte_ethdev.h.
enum rte_eth_nb_pools |
This enum indicates the possible number of queue pools in VMDQ configurations.
Enumerator | |
---|---|
ETH_8_POOLS |
8 VMDq pools. |
ETH_16_POOLS |
16 VMDq pools. |
ETH_32_POOLS |
32 VMDq pools. |
ETH_64_POOLS |
64 VMDq pools. |
Definition at line 721 of file rte_ethdev.h.
enum rte_eth_fc_mode |
This enum indicates the flow control mode
Definition at line 947 of file rte_ethdev.h.
enum rte_eth_tunnel_type |
Tunneled type.
Definition at line 982 of file rte_ethdev.h.
Memory space that can be configured to store Flow Director filters in the board memory.
Enumerator | |
---|---|
RTE_FDIR_PBALLOC_64K |
64k. |
RTE_FDIR_PBALLOC_128K |
128k. |
RTE_FDIR_PBALLOC_256K |
256k. |
Definition at line 1001 of file rte_ethdev.h.
enum rte_fdir_status_mode |
Select report mode of FDIR hash information in RX descriptors.
Enumerator | |
---|---|
RTE_FDIR_NO_REPORT_STATUS |
Never report FDIR hash. |
RTE_FDIR_REPORT_STATUS |
Only report FDIR hash for matching pkts. |
RTE_FDIR_REPORT_STATUS_ALWAYS |
Always report FDIR hash. |
Definition at line 1010 of file rte_ethdev.h.
enum rte_eth_dev_state |
Possible states of an ethdev port.
Definition at line 1484 of file rte_ethdev.h.
Subtypes for IPsec offload event(RTE_ETH_EVENT_IPSEC) raised by eth device.
Definition at line 2983 of file rte_ethdev.h.
enum rte_eth_event_type |
The eth device event type for interrupt, and maybe others in the future.
Definition at line 3022 of file rte_ethdev.h.
int rte_eth_iterator_init | ( | struct rte_dev_iterator * | iter, |
const char * | devargs | ||
) |
Initializes a device iterator.
This iterator allows accessing a list of devices matching some devargs.
iter | Device iterator handle initialized by the function. The fields bus_str and cls_str might be dynamically allocated, and could be freed by calling rte_eth_iterator_cleanup(). |
devargs | Device description string. |
uint16_t rte_eth_iterator_next | ( | struct rte_dev_iterator * | iter | ) |
Iterates on devices with devargs filter. The ownership is not checked.
The next port id is returned, and the iterator is updated.
iter | Device iterator handle initialized by rte_eth_iterator_init(). Some fields bus_str and cls_str might be freed when no more port is found, by calling rte_eth_iterator_cleanup(). |
void rte_eth_iterator_cleanup | ( | struct rte_dev_iterator * | iter | ) |
Free some allocated fields of the iterator.
This function is automatically called by rte_eth_iterator_next() on the last iteration (i.e. when no more matching port is found).
It is safe to call this function twice; it will do nothing more.
iter | Device iterator handle initialized by rte_eth_iterator_init(). The fields bus_str and cls_str are freed if needed. |
__extension__ struct rte_eth_link __rte_aligned | ( | 8 | ) |
aligned for atomic64 read/write
|
inlinestatic |
For input set change of hash filter, if SRC_ONLY and DST_ONLY of the same level are used simultaneously, it is the same case as none of them are added.
rss_hf | RSS types with SRC/DST_ONLY. |
Definition at line 553 of file rte_ethdev.h.
uint64_t rte_eth_find_next_owned_by | ( | uint16_t | port_id, |
const uint64_t | owner_id | ||
) |
Iterates over valid ethdev ports owned by a specific owner.
port_id | The id of the next possible valid owned port. |
owner_id | The owner identifier. RTE_ETH_DEV_NO_OWNER means iterate over all valid ownerless ports. |
uint16_t rte_eth_find_next | ( | uint16_t | port_id | ) |
Iterates over valid ethdev ports.
port_id | The id of the next possible valid port. |
__rte_experimental uint16_t rte_eth_find_next_of | ( | uint16_t | port_id_start, |
const struct rte_device * | parent | ||
) |
Iterates over ethdev ports of a specified device.
port_id_start | The id of the next possible valid port. |
parent | The generic device behind the ports to iterate. |
__rte_experimental uint16_t rte_eth_find_next_sibling | ( | uint16_t | port_id_start, |
uint16_t | ref_port_id | ||
) |
Iterates over sibling ethdev ports (i.e. sharing the same rte_device).
port_id_start | The id of the next possible valid sibling port. |
ref_port_id | The id of a reference port to compare rte_device with. |
__rte_experimental int rte_eth_dev_owner_new | ( | uint64_t * | owner_id | ) |
Get a new unique owner identifier. An owner identifier is used to owns Ethernet devices by only one DPDK entity to avoid multiple management of device by different entities.
owner_id | Owner identifier pointer. |
__rte_experimental int rte_eth_dev_owner_set | ( | const uint16_t | port_id, |
const struct rte_eth_dev_owner * | owner | ||
) |
Set an Ethernet device owner.
port_id | The identifier of the port to own. |
owner | The owner pointer. |
__rte_experimental int rte_eth_dev_owner_unset | ( | const uint16_t | port_id, |
const uint64_t | owner_id | ||
) |
Unset Ethernet device owner to make the device ownerless.
port_id | The identifier of port to make ownerless. |
owner_id | The owner identifier. |
__rte_experimental int rte_eth_dev_owner_delete | ( | const uint64_t | owner_id | ) |
Remove owner from all Ethernet devices owned by a specific owner.
owner_id | The owner identifier. |
__rte_experimental int rte_eth_dev_owner_get | ( | const uint16_t | port_id, |
struct rte_eth_dev_owner * | owner | ||
) |
Get the owner of an Ethernet device.
port_id | The port identifier. |
owner | The owner structure pointer to fill. |
uint16_t rte_eth_dev_count_avail | ( | void | ) |
Get the number of ports which are usable for the application.
These devices must be iterated by using the macro RTE_ETH_FOREACH_DEV
or RTE_ETH_FOREACH_DEV_OWNED_BY
to deal with non-contiguous ranges of devices.
uint16_t rte_eth_dev_count_total | ( | void | ) |
Get the total number of ports which are allocated.
Some devices may not be available for the application.
uint32_t rte_eth_speed_bitflag | ( | uint32_t | speed, |
int | duplex | ||
) |
Convert a numerical speed in Mbps to a bitmap flag that can be used in the bitmap link_speeds of the struct rte_eth_conf
speed | Numerical speed value in Mbps |
duplex | ETH_LINK_[HALF/FULL]_DUPLEX (only for 10/100M speeds) |
const char* rte_eth_dev_rx_offload_name | ( | uint64_t | offload | ) |
Get DEV_RX_OFFLOAD_* flag name.
offload | Offload flag. |
const char* rte_eth_dev_tx_offload_name | ( | uint64_t | offload | ) |
Get DEV_TX_OFFLOAD_* flag name.
offload | Offload flag. |
int rte_eth_dev_configure | ( | uint16_t | port_id, |
uint16_t | nb_rx_queue, | ||
uint16_t | nb_tx_queue, | ||
const struct rte_eth_conf * | eth_conf | ||
) |
Configure an Ethernet device. This function must be invoked first before any other function in the Ethernet API. This function can also be re-invoked when a device is in the stopped state.
port_id | The port identifier of the Ethernet device to configure. |
nb_rx_queue | The number of receive queues to set up for the Ethernet device. |
nb_tx_queue | The number of transmit queues to set up for the Ethernet device. |
eth_conf | The pointer to the configuration data to be used for the Ethernet device. The rte_eth_conf structure includes:
|
Embedding all configuration information in a single data structure is the more flexible method that allows the addition of new features without changing the syntax of the API.
__rte_experimental int rte_eth_dev_is_removed | ( | uint16_t | port_id | ) |
Check if an Ethernet device was physically removed.
port_id | The port identifier of the Ethernet device. |
int rte_eth_rx_queue_setup | ( | uint16_t | port_id, |
uint16_t | rx_queue_id, | ||
uint16_t | nb_rx_desc, | ||
unsigned int | socket_id, | ||
const struct rte_eth_rxconf * | rx_conf, | ||
struct rte_mempool * | mb_pool | ||
) |
Allocate and set up a receive queue for an Ethernet device.
The function allocates a contiguous block of memory for nb_rx_desc receive descriptors from a memory zone associated with socket_id and initializes each receive descriptor with a network buffer allocated from the memory pool mb_pool.
port_id | The port identifier of the Ethernet device. |
rx_queue_id | The index of the receive queue to set up. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
nb_rx_desc | The number of receive descriptors to allocate for the receive ring. |
socket_id | The socket_id argument is the socket identifier in case of NUMA. The value can be SOCKET_ID_ANY if there is no NUMA constraint for the DMA memory allocated for the receive descriptors of the ring. |
rx_conf | The pointer to the configuration data to be used for the receive queue. NULL value is allowed, in which case default RX configuration will be used. The rx_conf structure contains an rx_thresh structure with the values of the Prefetch, Host, and Write-Back threshold registers of the receive ring. In addition it contains the hardware offloads features to activate using the DEV_RX_OFFLOAD_* flags. If an offloading set in rx_conf->offloads hasn't been set in the input argument eth_conf->rxmode.offloads to rte_eth_dev_configure(), it is a new added offloading, it must be per-queue type and it is enabled for the queue. No need to repeat any bit in rx_conf->offloads which has already been enabled in rte_eth_dev_configure() at port level. An offloading enabled at port level can't be disabled at queue level. |
mb_pool | The pointer to the memory pool from which to allocate rte_mbuf network memory buffers to populate each descriptor of the receive ring. |
__rte_experimental int rte_eth_rx_hairpin_queue_setup | ( | uint16_t | port_id, |
uint16_t | rx_queue_id, | ||
uint16_t | nb_rx_desc, | ||
const struct rte_eth_hairpin_conf * | conf | ||
) |
Allocate and set up a hairpin receive queue for an Ethernet device.
The function set up the selected queue to be used in hairpin.
port_id | The port identifier of the Ethernet device. |
rx_queue_id | The index of the receive queue to set up. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
nb_rx_desc | The number of receive descriptors to allocate for the receive ring. 0 means the PMD will use default value. |
conf | The pointer to the hairpin configuration. |
int rte_eth_tx_queue_setup | ( | uint16_t | port_id, |
uint16_t | tx_queue_id, | ||
uint16_t | nb_tx_desc, | ||
unsigned int | socket_id, | ||
const struct rte_eth_txconf * | tx_conf | ||
) |
Allocate and set up a transmit queue for an Ethernet device.
port_id | The port identifier of the Ethernet device. |
tx_queue_id | The index of the transmit queue to set up. The value must be in the range [0, nb_tx_queue - 1] previously supplied to rte_eth_dev_configure(). |
nb_tx_desc | The number of transmit descriptors to allocate for the transmit ring. |
socket_id | The socket_id argument is the socket identifier in case of NUMA. Its value can be SOCKET_ID_ANY if there is no NUMA constraint for the DMA memory allocated for the transmit descriptors of the ring. |
tx_conf | The pointer to the configuration data to be used for the transmit queue. NULL value is allowed, in which case default TX configuration will be used. The tx_conf structure contains the following data:
|
__rte_experimental int rte_eth_tx_hairpin_queue_setup | ( | uint16_t | port_id, |
uint16_t | tx_queue_id, | ||
uint16_t | nb_tx_desc, | ||
const struct rte_eth_hairpin_conf * | conf | ||
) |
Allocate and set up a transmit hairpin queue for an Ethernet device.
port_id | The port identifier of the Ethernet device. |
tx_queue_id | The index of the transmit queue to set up. The value must be in the range [0, nb_tx_queue - 1] previously supplied to rte_eth_dev_configure(). |
nb_tx_desc | The number of transmit descriptors to allocate for the transmit ring. 0 to set default PMD value. |
conf | The hairpin configuration. |
int rte_eth_dev_socket_id | ( | uint16_t | port_id | ) |
Return the NUMA socket to which an Ethernet device is connected
port_id | The port identifier of the Ethernet device |
int rte_eth_dev_is_valid_port | ( | uint16_t | port_id | ) |
Check if port_id of device is attached
port_id | The port identifier of the Ethernet device |
int rte_eth_dev_rx_queue_start | ( | uint16_t | port_id, |
uint16_t | rx_queue_id | ||
) |
Start specified RX queue of a port. It is used when rx_deferred_start flag of the specified queue is true.
port_id | The port identifier of the Ethernet device |
rx_queue_id | The index of the rx queue to update the ring. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
int rte_eth_dev_rx_queue_stop | ( | uint16_t | port_id, |
uint16_t | rx_queue_id | ||
) |
Stop specified RX queue of a port
port_id | The port identifier of the Ethernet device |
rx_queue_id | The index of the rx queue to update the ring. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
int rte_eth_dev_tx_queue_start | ( | uint16_t | port_id, |
uint16_t | tx_queue_id | ||
) |
Start TX for specified queue of a port. It is used when tx_deferred_start flag of the specified queue is true.
port_id | The port identifier of the Ethernet device |
tx_queue_id | The index of the tx queue to update the ring. The value must be in the range [0, nb_tx_queue - 1] previously supplied to rte_eth_dev_configure(). |
int rte_eth_dev_tx_queue_stop | ( | uint16_t | port_id, |
uint16_t | tx_queue_id | ||
) |
Stop specified TX queue of a port
port_id | The port identifier of the Ethernet device |
tx_queue_id | The index of the tx queue to update the ring. The value must be in the range [0, nb_tx_queue - 1] previously supplied to rte_eth_dev_configure(). |
int rte_eth_dev_start | ( | uint16_t | port_id | ) |
Start an Ethernet device.
The device start step is the last one and consists of setting the configured offload features and in starting the transmit and the receive units of the device.
Device RTE_ETH_DEV_NOLIVE_MAC_ADDR flag causes MAC address to be set before PMD port start callback function is invoked.
On success, all basic functions exported by the Ethernet API (link status, receive/transmit, and so on) can be invoked.
port_id | The port identifier of the Ethernet device. |
void rte_eth_dev_stop | ( | uint16_t | port_id | ) |
Stop an Ethernet device. The device can be restarted with a call to rte_eth_dev_start()
port_id | The port identifier of the Ethernet device. |
int rte_eth_dev_set_link_up | ( | uint16_t | port_id | ) |
Link up an Ethernet device.
Set device link up will re-enable the device rx/tx functionality after it is previously set device linked down.
port_id | The port identifier of the Ethernet device. |
int rte_eth_dev_set_link_down | ( | uint16_t | port_id | ) |
Link down an Ethernet device. The device rx/tx functionality will be disabled if success, and it can be re-enabled with a call to rte_eth_dev_set_link_up()
port_id | The port identifier of the Ethernet device. |
void rte_eth_dev_close | ( | uint16_t | port_id | ) |
Close a stopped Ethernet device. The device cannot be restarted! The function frees all port resources if the driver supports the flag RTE_ETH_DEV_CLOSE_REMOVE.
port_id | The port identifier of the Ethernet device. |
int rte_eth_dev_reset | ( | uint16_t | port_id | ) |
Reset a Ethernet device and keep its port id.
When a port has to be reset passively, the DPDK application can invoke this function. For example when a PF is reset, all its VFs should also be reset. Normally a DPDK application can invoke this function when RTE_ETH_EVENT_INTR_RESET event is detected, but can also use it to start a port reset in other circumstances.
When this function is called, it first stops the port and then calls the PMD specific dev_uninit( ) and dev_init( ) to return the port to initial state, in which no Tx and Rx queues are setup, as if the port has been reset and not started. The port keeps the port id it had before the function call.
After calling rte_eth_dev_reset( ), the application should use rte_eth_dev_configure( ), rte_eth_rx_queue_setup( ), rte_eth_tx_queue_setup( ), and rte_eth_dev_start( ) to reconfigure the device as appropriate.
Note: To avoid unexpected behavior, the application should stop calling Tx and Rx functions before calling rte_eth_dev_reset( ). For thread safety, all these controlling functions should be called from the same thread.
port_id | The port identifier of the Ethernet device. |
int rte_eth_promiscuous_enable | ( | uint16_t | port_id | ) |
Enable receipt in promiscuous mode for an Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_promiscuous_disable | ( | uint16_t | port_id | ) |
Disable receipt in promiscuous mode for an Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_promiscuous_get | ( | uint16_t | port_id | ) |
Return the value of promiscuous mode for an Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_allmulticast_enable | ( | uint16_t | port_id | ) |
Enable the receipt of any multicast frame by an Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_allmulticast_disable | ( | uint16_t | port_id | ) |
Disable the receipt of all multicast frames by an Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_allmulticast_get | ( | uint16_t | port_id | ) |
Return the value of allmulticast mode for an Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_link_get | ( | uint16_t | port_id, |
struct rte_eth_link * | link | ||
) |
Retrieve the status (ON/OFF), the speed (in Mbps) and the mode (HALF-DUPLEX or FULL-DUPLEX) of the physical link of an Ethernet device. It might need to wait up to 9 seconds in it.
port_id | The port identifier of the Ethernet device. |
link | A pointer to an rte_eth_link structure to be filled with the status, the speed and the mode of the Ethernet device link. |
int rte_eth_link_get_nowait | ( | uint16_t | port_id, |
struct rte_eth_link * | link | ||
) |
Retrieve the status (ON/OFF), the speed (in Mbps) and the mode (HALF-DUPLEX or FULL-DUPLEX) of the physical link of an Ethernet device. It is a no-wait version of rte_eth_link_get().
port_id | The port identifier of the Ethernet device. |
link | A pointer to an rte_eth_link structure to be filled with the status, the speed and the mode of the Ethernet device link. |
int rte_eth_stats_get | ( | uint16_t | port_id, |
struct rte_eth_stats * | stats | ||
) |
Retrieve the general I/O statistics of an Ethernet device.
port_id | The port identifier of the Ethernet device. |
stats | A pointer to a structure of type rte_eth_stats to be filled with the values of device counters for the following set of statistics:
|
int rte_eth_stats_reset | ( | uint16_t | port_id | ) |
Reset the general I/O statistics of an Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_xstats_get_names | ( | uint16_t | port_id, |
struct rte_eth_xstat_name * | xstats_names, | ||
unsigned int | size | ||
) |
Retrieve names of extended statistics of an Ethernet device.
There is an assumption that 'xstat_names' and 'xstats' arrays are matched by array index: xstats_names[i].name => xstats[i].value
And the array index is same with id field of 'struct rte_eth_xstat': xstats[i].id == i
This assumption makes key-value pair matching less flexible but simpler.
port_id | The port identifier of the Ethernet device. |
xstats_names | An rte_eth_xstat_name array of at least size elements to be filled. If set to NULL, the function returns the required number of elements. |
size | The size of the xstats_names array (number of elements). |
int rte_eth_xstats_get | ( | uint16_t | port_id, |
struct rte_eth_xstat * | xstats, | ||
unsigned int | n | ||
) |
Retrieve extended statistics of an Ethernet device.
There is an assumption that 'xstat_names' and 'xstats' arrays are matched by array index: xstats_names[i].name => xstats[i].value
And the array index is same with id field of 'struct rte_eth_xstat': xstats[i].id == i
This assumption makes key-value pair matching less flexible but simpler.
port_id | The port identifier of the Ethernet device. |
xstats | A pointer to a table of structure of type rte_eth_xstat to be filled with device statistics ids and values. This parameter can be set to NULL if n is 0. |
n | The size of the xstats array (number of elements). |
int rte_eth_xstats_get_names_by_id | ( | uint16_t | port_id, |
struct rte_eth_xstat_name * | xstats_names, | ||
unsigned int | size, | ||
uint64_t * | ids | ||
) |
Retrieve names of extended statistics of an Ethernet device.
port_id | The port identifier of the Ethernet device. |
xstats_names | An rte_eth_xstat_name array of at least size elements to be filled. If set to NULL, the function returns the required number of elements. |
ids | IDs array given by app to retrieve specific statistics |
size | The size of the xstats_names array (number of elements). |
int rte_eth_xstats_get_by_id | ( | uint16_t | port_id, |
const uint64_t * | ids, | ||
uint64_t * | values, | ||
unsigned int | size | ||
) |
Retrieve extended statistics of an Ethernet device.
port_id | The port identifier of the Ethernet device. |
ids | A pointer to an ids array passed by application. This tells which statistics values function should retrieve. This parameter can be set to NULL if size is 0. In this case function will retrieve all available statistics. |
values | A pointer to a table to be filled with device statistics values. |
size | The size of the ids array (number of elements). |
int rte_eth_xstats_get_id_by_name | ( | uint16_t | port_id, |
const char * | xstat_name, | ||
uint64_t * | id | ||
) |
Gets the ID of a statistic from its name.
This function searches for the statistics using string compares, and as such should not be used on the fast-path. For fast-path retrieval of specific statistics, store the ID as provided in id from this function, and pass the ID to rte_eth_xstats_get()
port_id | The port to look up statistics from | |
xstat_name | The name of the statistic to return | |
[out] | id | A pointer to an app-supplied uint64_t which should be set to the ID of the stat if the stat exists. |
int rte_eth_xstats_reset | ( | uint16_t | port_id | ) |
Reset extended statistics of an Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_dev_set_tx_queue_stats_mapping | ( | uint16_t | port_id, |
uint16_t | tx_queue_id, | ||
uint8_t | stat_idx | ||
) |
Set a mapping for the specified transmit queue to the specified per-queue statistics counter.
port_id | The port identifier of the Ethernet device. |
tx_queue_id | The index of the transmit queue for which a queue stats mapping is required. The value must be in the range [0, nb_tx_queue - 1] previously supplied to rte_eth_dev_configure(). |
stat_idx | The per-queue packet statistics functionality number that the transmit queue is to be assigned. The value must be in the range [0, RTE_ETHDEV_QUEUE_STAT_CNTRS - 1]. |
int rte_eth_dev_set_rx_queue_stats_mapping | ( | uint16_t | port_id, |
uint16_t | rx_queue_id, | ||
uint8_t | stat_idx | ||
) |
Set a mapping for the specified receive queue to the specified per-queue statistics counter.
port_id | The port identifier of the Ethernet device. |
rx_queue_id | The index of the receive queue for which a queue stats mapping is required. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
stat_idx | The per-queue packet statistics functionality number that the receive queue is to be assigned. The value must be in the range [0, RTE_ETHDEV_QUEUE_STAT_CNTRS - 1]. |
int rte_eth_macaddr_get | ( | uint16_t | port_id, |
struct rte_ether_addr * | mac_addr | ||
) |
Retrieve the Ethernet address of an Ethernet device.
port_id | The port identifier of the Ethernet device. |
mac_addr | A pointer to a structure of type ether_addr to be filled with the Ethernet address of the Ethernet device. |
int rte_eth_dev_info_get | ( | uint16_t | port_id, |
struct rte_eth_dev_info * | dev_info | ||
) |
Retrieve the contextual information of an Ethernet device.
As part of this function, a number of of fields in dev_info will be initialized as follows:
rx_desc_lim = lim tx_desc_lim = lim
Where lim is defined within the rte_eth_dev_info_get as
const struct rte_eth_desc_lim lim = { .nb_max = UINT16_MAX, .nb_min = 0, .nb_align = 1, .nb_seg_max = UINT16_MAX, .nb_mtu_seg_max = UINT16_MAX, };
device = dev->device min_mtu = RTE_ETHER_MIN_MTU max_mtu = UINT16_MAX
The following fields will be populated if support for dev_infos_get() exists for the device and the rte_eth_dev 'dev' has been populated successfully with a call to it:
driver_name = dev->device->driver->name nb_rx_queues = dev->data->nb_rx_queues nb_tx_queues = dev->data->nb_tx_queues dev_flags = &dev->data->dev_flags
port_id | The port identifier of the Ethernet device. |
dev_info | A pointer to a structure of type rte_eth_dev_info to be filled with the contextual information of the Ethernet device. |
int rte_eth_dev_fw_version_get | ( | uint16_t | port_id, |
char * | fw_version, | ||
size_t | fw_size | ||
) |
Retrieve the firmware version of a device.
port_id | The port identifier of the device. |
fw_version | A pointer to a string array storing the firmware version of a device, the string includes terminating null. This pointer is allocated by caller. |
fw_size | The size of the string array pointed by fw_version, which should be large enough to store firmware version of the device. |
int rte_eth_dev_get_supported_ptypes | ( | uint16_t | port_id, |
uint32_t | ptype_mask, | ||
uint32_t * | ptypes, | ||
int | num | ||
) |
Retrieve the supported packet types of an Ethernet device.
When a packet type is announced as supported, it must be recognized by the PMD. For instance, if RTE_PTYPE_L2_ETHER, RTE_PTYPE_L2_ETHER_VLAN and RTE_PTYPE_L3_IPV4 are announced, the PMD must return the following packet types for these packets:
When a packet is received by a PMD, the most precise type must be returned among the ones supported. However a PMD is allowed to set packet type that is not in the supported list, at the condition that it is more precise. Therefore, a PMD announcing no supported packet types can still set a matching packet type in a received packet.
port_id | The port identifier of the Ethernet device. |
ptype_mask | A hint of what kind of packet type which the caller is interested in. |
ptypes | An array pointer to store adequate packet types, allocated by caller. |
num | Size of the array pointed by param ptypes. |
__rte_experimental int rte_eth_dev_set_ptypes | ( | uint16_t | port_id, |
uint32_t | ptype_mask, | ||
uint32_t * | set_ptypes, | ||
unsigned int | num | ||
) |
Inform Ethernet device about reduced range of packet types to handle.
Application can use this function to set only specific ptypes that it's interested. This information can be used by the PMD to optimize Rx path.
The function accepts an array set_ptypes
allocated by the caller to store the packet types set by the driver, the last element of the array is set to RTE_PTYPE_UNKNOWN. The size of the set_ptype
array should be rte_eth_dev_get_supported_ptypes() + 1
else it might only be filled partially.
port_id | The port identifier of the Ethernet device. |
ptype_mask | The ptype family that application is interested in should be bitwise OR of RTE_PTYPE_*_MASK or 0. |
set_ptypes | An array pointer to store set packet types, allocated by caller. The function marks the end of array with RTE_PTYPE_UNKNOWN. |
num | Size of the array pointed by param ptypes. Should be rte_eth_dev_get_supported_ptypes() + 1 to accommodate the set ptypes. |
int rte_eth_dev_get_mtu | ( | uint16_t | port_id, |
uint16_t * | mtu | ||
) |
Retrieve the MTU of an Ethernet device.
port_id | The port identifier of the Ethernet device. |
mtu | A pointer to a uint16_t where the retrieved MTU is to be stored. |
int rte_eth_dev_set_mtu | ( | uint16_t | port_id, |
uint16_t | mtu | ||
) |
Change the MTU of an Ethernet device.
port_id | The port identifier of the Ethernet device. |
mtu | A uint16_t for the MTU to be applied. |
int rte_eth_dev_vlan_filter | ( | uint16_t | port_id, |
uint16_t | vlan_id, | ||
int | on | ||
) |
Enable/Disable hardware filtering by an Ethernet device of received VLAN packets tagged with a given VLAN Tag Identifier.
port_id | The port identifier of the Ethernet device. |
vlan_id | The VLAN Tag Identifier whose filtering must be enabled or disabled. |
on | If > 0, enable VLAN filtering of VLAN packets tagged with vlan_id. Otherwise, disable VLAN filtering of VLAN packets tagged with vlan_id. |
int rte_eth_dev_set_vlan_strip_on_queue | ( | uint16_t | port_id, |
uint16_t | rx_queue_id, | ||
int | on | ||
) |
Enable/Disable hardware VLAN Strip by a rx queue of an Ethernet device. 82599/X540/X550 can support VLAN stripping at the rx queue level
port_id | The port identifier of the Ethernet device. |
rx_queue_id | The index of the receive queue for which a queue stats mapping is required. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
on | If 1, Enable VLAN Stripping of the receive queue of the Ethernet port. If 0, Disable VLAN Stripping of the receive queue of the Ethernet port. |
int rte_eth_dev_set_vlan_ether_type | ( | uint16_t | port_id, |
enum rte_vlan_type | vlan_type, | ||
uint16_t | tag_type | ||
) |
Set the Outer VLAN Ether Type by an Ethernet device, it can be inserted to the VLAN Header. This is a register setup available on some Intel NIC, not but all, please check the data sheet for availability.
port_id | The port identifier of the Ethernet device. |
vlan_type | The vlan type. |
tag_type | The Tag Protocol ID |
int rte_eth_dev_set_vlan_offload | ( | uint16_t | port_id, |
int | offload_mask | ||
) |
Set VLAN offload configuration on an Ethernet device Enable/Disable Extended VLAN by an Ethernet device, This is a register setup available on some Intel NIC, not but all, please check the data sheet for availability. Enable/Disable VLAN Strip can be done on rx queue for certain NIC, but here the configuration is applied on the port level.
port_id | The port identifier of the Ethernet device. |
offload_mask | The VLAN Offload bit mask can be mixed use with "OR" ETH_VLAN_STRIP_OFFLOAD ETH_VLAN_FILTER_OFFLOAD ETH_VLAN_EXTEND_OFFLOAD ETH_QINQ_STRIP_OFFLOAD |
int rte_eth_dev_get_vlan_offload | ( | uint16_t | port_id | ) |
Read VLAN Offload configuration from an Ethernet device
port_id | The port identifier of the Ethernet device. |
int rte_eth_dev_set_vlan_pvid | ( | uint16_t | port_id, |
uint16_t | pvid, | ||
int | on | ||
) |
Set port based TX VLAN insertion on or off.
port_id | The port identifier of the Ethernet device. |
pvid | Port based TX VLAN identifier together with user priority. |
on | Turn on or off the port based TX VLAN insertion. |
int rte_eth_tx_buffer_init | ( | struct rte_eth_dev_tx_buffer * | buffer, |
uint16_t | size | ||
) |
Initialize default values for buffered transmitting
buffer | Tx buffer to be initialized. |
size | Buffer size |
int rte_eth_tx_buffer_set_err_callback | ( | struct rte_eth_dev_tx_buffer * | buffer, |
buffer_tx_error_fn | callback, | ||
void * | userdata | ||
) |
Configure a callback for buffered packets which cannot be sent
Register a specific callback to be called when an attempt is made to send all packets buffered on an ethernet port, but not all packets can successfully be sent. The callback registered here will be called only from calls to rte_eth_tx_buffer() and rte_eth_tx_buffer_flush() APIs. The default callback configured for each queue by default just frees the packets back to the calling mempool. If additional behaviour is required, for example, to count dropped packets, or to retry transmission of packets which cannot be sent, this function should be used to register a suitable callback function to implement the desired behaviour. The example callback "rte_eth_count_unsent_packet_callback()" is also provided as reference.
buffer | The port identifier of the Ethernet device. |
callback | The function to be used as the callback. |
userdata | Arbitrary parameter to be passed to the callback function |
void rte_eth_tx_buffer_drop_callback | ( | struct rte_mbuf ** | pkts, |
uint16_t | unsent, | ||
void * | userdata | ||
) |
Callback function for silently dropping unsent buffered packets.
This function can be passed to rte_eth_tx_buffer_set_err_callback() to adjust the default behavior when buffered packets cannot be sent. This function drops any unsent packets silently and is used by tx buffered operations as default behavior.
NOTE: this function should not be called directly, instead it should be used as a callback for packet buffering.
NOTE: when configuring this function as a callback with rte_eth_tx_buffer_set_err_callback(), the final, userdata parameter should point to an uint64_t value.
pkts | The previously buffered packets which could not be sent |
unsent | The number of unsent packets in the pkts array |
userdata | Not used |
void rte_eth_tx_buffer_count_callback | ( | struct rte_mbuf ** | pkts, |
uint16_t | unsent, | ||
void * | userdata | ||
) |
Callback function for tracking unsent buffered packets.
This function can be passed to rte_eth_tx_buffer_set_err_callback() to adjust the default behavior when buffered packets cannot be sent. This function drops any unsent packets, but also updates a user-supplied counter to track the overall number of packets dropped. The counter should be an uint64_t variable.
NOTE: this function should not be called directly, instead it should be used as a callback for packet buffering.
NOTE: when configuring this function as a callback with rte_eth_tx_buffer_set_err_callback(), the final, userdata parameter should point to an uint64_t value.
pkts | The previously buffered packets which could not be sent |
unsent | The number of unsent packets in the pkts array |
userdata | Pointer to an uint64_t value, which will be incremented by unsent |
int rte_eth_tx_done_cleanup | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
uint32_t | free_cnt | ||
) |
Request the driver to free mbufs currently cached by the driver. The driver will only free the mbuf if it is no longer in use. It is the application's responsibility to ensure rte_eth_tx_buffer_flush(..) is called if needed.
port_id | The port identifier of the Ethernet device. |
queue_id | The index of the transmit queue through which output packets must be sent. The value must be in the range [0, nb_tx_queue - 1] previously supplied to rte_eth_dev_configure(). |
free_cnt | Maximum number of packets to free. Use 0 to indicate all possible packets should be freed. Note that a packet may be using multiple mbufs. |
int rte_eth_dev_callback_register | ( | uint16_t | port_id, |
enum rte_eth_event_type | event, | ||
rte_eth_dev_cb_fn | cb_fn, | ||
void * | cb_arg | ||
) |
Register a callback function for port event.
port_id | Port id. RTE_ETH_ALL means register the event for all port ids. |
event | Event interested. |
cb_fn | User supplied callback function to be called. |
cb_arg | Pointer to the parameters for the registered callback. |
int rte_eth_dev_callback_unregister | ( | uint16_t | port_id, |
enum rte_eth_event_type | event, | ||
rte_eth_dev_cb_fn | cb_fn, | ||
void * | cb_arg | ||
) |
Unregister a callback function for port event.
port_id | Port id. RTE_ETH_ALL means unregister the event for all port ids. |
event | Event interested. |
cb_fn | User supplied callback function to be called. |
cb_arg | Pointer to the parameters for the registered callback. -1 means to remove all for the same callback address and same event. |
int rte_eth_dev_rx_intr_enable | ( | uint16_t | port_id, |
uint16_t | queue_id | ||
) |
When there is no rx packet coming in Rx Queue for a long time, we can sleep lcore related to RX Queue for power saving, and enable rx interrupt to be triggered when Rx packet arrives.
The rte_eth_dev_rx_intr_enable() function enables rx queue interrupt on specific rx queue of a port.
port_id | The port identifier of the Ethernet device. |
queue_id | The index of the receive queue from which to retrieve input packets. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
int rte_eth_dev_rx_intr_disable | ( | uint16_t | port_id, |
uint16_t | queue_id | ||
) |
When lcore wakes up from rx interrupt indicating packet coming, disable rx interrupt and returns to polling mode.
The rte_eth_dev_rx_intr_disable() function disables rx queue interrupt on specific rx queue of a port.
port_id | The port identifier of the Ethernet device. |
queue_id | The index of the receive queue from which to retrieve input packets. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
int rte_eth_dev_rx_intr_ctl | ( | uint16_t | port_id, |
int | epfd, | ||
int | op, | ||
void * | data | ||
) |
RX Interrupt control per port.
port_id | The port identifier of the Ethernet device. |
epfd | Epoll instance fd which the intr vector associated to. Using RTE_EPOLL_PER_THREAD allows to use per thread epoll instance. |
op | The operation be performed for the vector. Operation type of {RTE_INTR_EVENT_ADD, RTE_INTR_EVENT_DEL}. |
data | User raw data. |
int rte_eth_dev_rx_intr_ctl_q | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
int | epfd, | ||
int | op, | ||
void * | data | ||
) |
RX Interrupt control per queue.
port_id | The port identifier of the Ethernet device. |
queue_id | The index of the receive queue from which to retrieve input packets. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
epfd | Epoll instance fd which the intr vector associated to. Using RTE_EPOLL_PER_THREAD allows to use per thread epoll instance. |
op | The operation be performed for the vector. Operation type of {RTE_INTR_EVENT_ADD, RTE_INTR_EVENT_DEL}. |
data | User raw data. |
__rte_experimental int rte_eth_dev_rx_intr_ctl_q_get_fd | ( | uint16_t | port_id, |
uint16_t | queue_id | ||
) |
Get interrupt fd per Rx queue.
port_id | The port identifier of the Ethernet device. |
queue_id | The index of the receive queue from which to retrieve input packets. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
int rte_eth_led_on | ( | uint16_t | port_id | ) |
Turn on the LED on the Ethernet device. This function turns on the LED on the Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_led_off | ( | uint16_t | port_id | ) |
Turn off the LED on the Ethernet device. This function turns off the LED on the Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_dev_flow_ctrl_get | ( | uint16_t | port_id, |
struct rte_eth_fc_conf * | fc_conf | ||
) |
Get current status of the Ethernet link flow control for Ethernet device
port_id | The port identifier of the Ethernet device. |
fc_conf | The pointer to the structure where to store the flow control parameters. |
int rte_eth_dev_flow_ctrl_set | ( | uint16_t | port_id, |
struct rte_eth_fc_conf * | fc_conf | ||
) |
Configure the Ethernet link flow control for Ethernet device
port_id | The port identifier of the Ethernet device. |
fc_conf | The pointer to the structure of the flow control parameters. |
int rte_eth_dev_priority_flow_ctrl_set | ( | uint16_t | port_id, |
struct rte_eth_pfc_conf * | pfc_conf | ||
) |
Configure the Ethernet priority flow control under DCB environment for Ethernet device.
port_id | The port identifier of the Ethernet device. |
pfc_conf | The pointer to the structure of the priority flow control parameters. |
int rte_eth_dev_mac_addr_add | ( | uint16_t | port_id, |
struct rte_ether_addr * | mac_addr, | ||
uint32_t | pool | ||
) |
Add a MAC address to an internal array of addresses used to enable whitelist filtering to accept packets only if the destination MAC address matches.
port_id | The port identifier of the Ethernet device. |
mac_addr | The MAC address to add. |
pool | VMDq pool index to associate address with (if VMDq is enabled). If VMDq is not enabled, this should be set to 0. |
int rte_eth_dev_mac_addr_remove | ( | uint16_t | port_id, |
struct rte_ether_addr * | mac_addr | ||
) |
Remove a MAC address from the internal array of addresses.
port_id | The port identifier of the Ethernet device. |
mac_addr | MAC address to remove. |
int rte_eth_dev_default_mac_addr_set | ( | uint16_t | port_id, |
struct rte_ether_addr * | mac_addr | ||
) |
Set the default MAC address.
port_id | The port identifier of the Ethernet device. |
mac_addr | New default MAC address. |
int rte_eth_dev_rss_reta_update | ( | uint16_t | port_id, |
struct rte_eth_rss_reta_entry64 * | reta_conf, | ||
uint16_t | reta_size | ||
) |
Update Redirection Table(RETA) of Receive Side Scaling of Ethernet device.
port_id | The port identifier of the Ethernet device. |
reta_conf | RETA to update. |
reta_size | Redirection table size. The table size can be queried by rte_eth_dev_info_get(). |
int rte_eth_dev_rss_reta_query | ( | uint16_t | port_id, |
struct rte_eth_rss_reta_entry64 * | reta_conf, | ||
uint16_t | reta_size | ||
) |
Query Redirection Table(RETA) of Receive Side Scaling of Ethernet device.
port_id | The port identifier of the Ethernet device. |
reta_conf | RETA to query. For each requested reta entry, corresponding bit in mask must be set. |
reta_size | Redirection table size. The table size can be queried by rte_eth_dev_info_get(). |
int rte_eth_dev_uc_hash_table_set | ( | uint16_t | port_id, |
struct rte_ether_addr * | addr, | ||
uint8_t | on | ||
) |
Updates unicast hash table for receiving packet with the given destination MAC address, and the packet is routed to all VFs for which the RX mode is accept packets that match the unicast hash table.
port_id | The port identifier of the Ethernet device. |
addr | Unicast MAC address. |
on | 1 - Set an unicast hash bit for receiving packets with the MAC address. 0 - Clear an unicast hash bit. |
int rte_eth_dev_uc_all_hash_table_set | ( | uint16_t | port_id, |
uint8_t | on | ||
) |
Updates all unicast hash bitmaps for receiving packet with any Unicast Ethernet MAC addresses,the packet is routed to all VFs for which the RX mode is accept packets that match the unicast hash table.
port_id | The port identifier of the Ethernet device. |
on | 1 - Set all unicast hash bitmaps for receiving all the Ethernet MAC addresses 0 - Clear all unicast hash bitmaps |
int rte_eth_mirror_rule_set | ( | uint16_t | port_id, |
struct rte_eth_mirror_conf * | mirror_conf, | ||
uint8_t | rule_id, | ||
uint8_t | on | ||
) |
Set a traffic mirroring rule on an Ethernet device
port_id | The port identifier of the Ethernet device. |
mirror_conf | The pointer to the traffic mirroring structure describing the mirroring rule. The rte_eth_vm_mirror_conf structure includes the type of mirroring rule, destination pool and the value of rule if enable vlan or pool mirroring. |
rule_id | The index of traffic mirroring rule, we support four separated rules. |
on | 1 - Enable a mirroring rule. 0 - Disable a mirroring rule. |
int rte_eth_mirror_rule_reset | ( | uint16_t | port_id, |
uint8_t | rule_id | ||
) |
Reset a traffic mirroring rule on an Ethernet device.
port_id | The port identifier of the Ethernet device. |
rule_id | The index of traffic mirroring rule, we support four separated rules. |
int rte_eth_set_queue_rate_limit | ( | uint16_t | port_id, |
uint16_t | queue_idx, | ||
uint16_t | tx_rate | ||
) |
Set the rate limitation for a queue on an Ethernet device.
port_id | The port identifier of the Ethernet device. |
queue_idx | The queue id. |
tx_rate | The tx rate in Mbps. Allocated from the total port link speed. |
int rte_eth_dev_rss_hash_update | ( | uint16_t | port_id, |
struct rte_eth_rss_conf * | rss_conf | ||
) |
Configuration of Receive Side Scaling hash computation of Ethernet device.
port_id | The port identifier of the Ethernet device. |
rss_conf | The new configuration to use for RSS hash computation on the port. |
int rte_eth_dev_rss_hash_conf_get | ( | uint16_t | port_id, |
struct rte_eth_rss_conf * | rss_conf | ||
) |
Retrieve current configuration of Receive Side Scaling hash computation of Ethernet device.
port_id | The port identifier of the Ethernet device. |
rss_conf | Where to store the current RSS hash configuration of the Ethernet device. |
int rte_eth_dev_udp_tunnel_port_add | ( | uint16_t | port_id, |
struct rte_eth_udp_tunnel * | tunnel_udp | ||
) |
Add UDP tunneling port for a specific type of tunnel. The packets with this UDP port will be identified as this type of tunnel. Before enabling any offloading function for a tunnel, users can call this API to change or add more UDP port for the tunnel. So the offloading function can take effect on the packets with the specific UDP port.
port_id | The port identifier of the Ethernet device. |
tunnel_udp | UDP tunneling configuration. |
int rte_eth_dev_udp_tunnel_port_delete | ( | uint16_t | port_id, |
struct rte_eth_udp_tunnel * | tunnel_udp | ||
) |
Delete UDP tunneling port a specific type of tunnel. The packets with this UDP port will not be identified as this type of tunnel any more. Before enabling any offloading function for a tunnel, users can call this API to delete a UDP port for the tunnel. So the offloading function will not take effect on the packets with the specific UDP port.
port_id | The port identifier of the Ethernet device. |
tunnel_udp | UDP tunneling configuration. |
__rte_deprecated int rte_eth_dev_filter_supported | ( | uint16_t | port_id, |
enum rte_filter_type | filter_type | ||
) |
Check whether the filter type is supported on an Ethernet device. All the supported filter types are defined in 'rte_eth_ctrl.h'.
port_id | The port identifier of the Ethernet device. |
filter_type | Filter type. |
__rte_deprecated int rte_eth_dev_filter_ctrl | ( | uint16_t | port_id, |
enum rte_filter_type | filter_type, | ||
enum rte_filter_op | filter_op, | ||
void * | arg | ||
) |
Take operations to assigned filter type on an Ethernet device. All the supported operations and filter types are defined in 'rte_eth_ctrl.h'.
port_id | The port identifier of the Ethernet device. |
filter_type | Filter type. |
filter_op | Type of operation. |
arg | A pointer to arguments defined specifically for the operation. |
int rte_eth_dev_get_dcb_info | ( | uint16_t | port_id, |
struct rte_eth_dcb_info * | dcb_info | ||
) |
Get DCB information on an Ethernet device.
port_id | The port identifier of the Ethernet device. |
dcb_info | dcb information. |
const struct rte_eth_rxtx_callback* rte_eth_add_rx_callback | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
rte_rx_callback_fn | fn, | ||
void * | user_param | ||
) |
Add a callback to be called on packet RX on a given port and queue.
This API configures a function to be called for each burst of packets received on a given NIC port queue. The return value is a pointer that can be used to later remove the callback using rte_eth_remove_rx_callback().
Multiple functions are called in the order that they are added.
port_id | The port identifier of the Ethernet device. |
queue_id | The queue on the Ethernet device on which the callback is to be added. |
fn | The callback function |
user_param | A generic pointer parameter which will be passed to each invocation of the callback function on this port and queue. |
const struct rte_eth_rxtx_callback* rte_eth_add_first_rx_callback | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
rte_rx_callback_fn | fn, | ||
void * | user_param | ||
) |
Add a callback that must be called first on packet RX on a given port and queue.
This API configures a first function to be called for each burst of packets received on a given NIC port queue. The return value is a pointer that can be used to later remove the callback using rte_eth_remove_rx_callback().
Multiple functions are called in the order that they are added.
port_id | The port identifier of the Ethernet device. |
queue_id | The queue on the Ethernet device on which the callback is to be added. |
fn | The callback function |
user_param | A generic pointer parameter which will be passed to each invocation of the callback function on this port and queue. |
const struct rte_eth_rxtx_callback* rte_eth_add_tx_callback | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
rte_tx_callback_fn | fn, | ||
void * | user_param | ||
) |
Add a callback to be called on packet TX on a given port and queue.
This API configures a function to be called for each burst of packets sent on a given NIC port queue. The return value is a pointer that can be used to later remove the callback using rte_eth_remove_tx_callback().
Multiple functions are called in the order that they are added.
port_id | The port identifier of the Ethernet device. |
queue_id | The queue on the Ethernet device on which the callback is to be added. |
fn | The callback function |
user_param | A generic pointer parameter which will be passed to each invocation of the callback function on this port and queue. |
int rte_eth_remove_rx_callback | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
const struct rte_eth_rxtx_callback * | user_cb | ||
) |
Remove an RX packet callback from a given port and queue.
This function is used to removed callbacks that were added to a NIC port queue using rte_eth_add_rx_callback().
Note: the callback is removed from the callback list but it isn't freed since the it may still be in use. The memory for the callback can be subsequently freed back by the application by calling rte_free():
port_id | The port identifier of the Ethernet device. |
queue_id | The queue on the Ethernet device from which the callback is to be removed. |
user_cb | User supplied callback created via rte_eth_add_rx_callback(). |
int rte_eth_remove_tx_callback | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
const struct rte_eth_rxtx_callback * | user_cb | ||
) |
Remove a TX packet callback from a given port and queue.
This function is used to removed callbacks that were added to a NIC port queue using rte_eth_add_tx_callback().
Note: the callback is removed from the callback list but it isn't freed since the it may still be in use. The memory for the callback can be subsequently freed back by the application by calling rte_free():
port_id | The port identifier of the Ethernet device. |
queue_id | The queue on the Ethernet device from which the callback is to be removed. |
user_cb | User supplied callback created via rte_eth_add_tx_callback(). |
int rte_eth_rx_queue_info_get | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
struct rte_eth_rxq_info * | qinfo | ||
) |
Retrieve information about given port's RX queue.
port_id | The port identifier of the Ethernet device. |
queue_id | The RX queue on the Ethernet device for which information will be retrieved. |
qinfo | A pointer to a structure of type rte_eth_rxq_info_info to be filled with the information of the Ethernet device. |
int rte_eth_tx_queue_info_get | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
struct rte_eth_txq_info * | qinfo | ||
) |
Retrieve information about given port's TX queue.
port_id | The port identifier of the Ethernet device. |
queue_id | The TX queue on the Ethernet device for which information will be retrieved. |
qinfo | A pointer to a structure of type rte_eth_txq_info_info to be filled with the information of the Ethernet device. |
__rte_experimental int rte_eth_rx_burst_mode_get | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
struct rte_eth_burst_mode * | mode | ||
) |
Retrieve information about the Rx packet burst mode.
port_id | The port identifier of the Ethernet device. |
queue_id | The Rx queue on the Ethernet device for which information will be retrieved. |
mode | A pointer to a structure of type rte_eth_burst_mode to be filled with the information of the packet burst mode. |
__rte_experimental int rte_eth_tx_burst_mode_get | ( | uint16_t | port_id, |
uint16_t | queue_id, | ||
struct rte_eth_burst_mode * | mode | ||
) |
Retrieve information about the Tx packet burst mode.
port_id | The port identifier of the Ethernet device. |
queue_id | The Tx queue on the Ethernet device for which information will be retrieved. |
mode | A pointer to a structure of type rte_eth_burst_mode to be filled with the information of the packet burst mode. |
int rte_eth_dev_get_reg_info | ( | uint16_t | port_id, |
struct rte_dev_reg_info * | info | ||
) |
Retrieve device registers and register attributes (number of registers and register size)
port_id | The port identifier of the Ethernet device. |
info | Pointer to rte_dev_reg_info structure to fill in. If info->data is NULL the function fills in the width and length fields. If non-NULL the registers are put into the buffer pointed at by the data field. |
int rte_eth_dev_get_eeprom_length | ( | uint16_t | port_id | ) |
Retrieve size of device EEPROM
port_id | The port identifier of the Ethernet device. |
int rte_eth_dev_get_eeprom | ( | uint16_t | port_id, |
struct rte_dev_eeprom_info * | info | ||
) |
Retrieve EEPROM and EEPROM attribute
port_id | The port identifier of the Ethernet device. |
info | The template includes buffer for return EEPROM data and EEPROM attributes to be filled. |
int rte_eth_dev_set_eeprom | ( | uint16_t | port_id, |
struct rte_dev_eeprom_info * | info | ||
) |
Program EEPROM with provided data
port_id | The port identifier of the Ethernet device. |
info | The template includes EEPROM data for programming and EEPROM attributes to be filled |
__rte_experimental int rte_eth_dev_get_module_info | ( | uint16_t | port_id, |
struct rte_eth_dev_module_info * | modinfo | ||
) |
Retrieve the type and size of plugin module EEPROM
port_id | The port identifier of the Ethernet device. |
modinfo | The type and size of plugin module EEPROM. |
__rte_experimental int rte_eth_dev_get_module_eeprom | ( | uint16_t | port_id, |
struct rte_dev_eeprom_info * | info | ||
) |
Retrieve the data of plugin module EEPROM
port_id | The port identifier of the Ethernet device. |
info | The template includes the plugin module EEPROM attributes, and the buffer for return plugin module EEPROM data. |
int rte_eth_dev_set_mc_addr_list | ( | uint16_t | port_id, |
struct rte_ether_addr * | mc_addr_set, | ||
uint32_t | nb_mc_addr | ||
) |
Set the list of multicast addresses to filter on an Ethernet device.
port_id | The port identifier of the Ethernet device. |
mc_addr_set | The array of multicast addresses to set. Equal to NULL when the function is invoked to flush the set of filtered addresses. |
nb_mc_addr | The number of multicast addresses in the mc_addr_set array. Equal to 0 when the function is invoked to flush the set of filtered addresses. |
int rte_eth_timesync_enable | ( | uint16_t | port_id | ) |
Enable IEEE1588/802.1AS timestamping for an Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_timesync_disable | ( | uint16_t | port_id | ) |
Disable IEEE1588/802.1AS timestamping for an Ethernet device.
port_id | The port identifier of the Ethernet device. |
int rte_eth_timesync_read_rx_timestamp | ( | uint16_t | port_id, |
struct timespec * | timestamp, | ||
uint32_t | flags | ||
) |
Read an IEEE1588/802.1AS RX timestamp from an Ethernet device.
port_id | The port identifier of the Ethernet device. |
timestamp | Pointer to the timestamp struct. |
flags | Device specific flags. Used to pass the RX timesync register index to i40e. Unused in igb/ixgbe, pass 0 instead. |
int rte_eth_timesync_read_tx_timestamp | ( | uint16_t | port_id, |
struct timespec * | timestamp | ||
) |
Read an IEEE1588/802.1AS TX timestamp from an Ethernet device.
port_id | The port identifier of the Ethernet device. |
timestamp | Pointer to the timestamp struct. |
int rte_eth_timesync_adjust_time | ( | uint16_t | port_id, |
int64_t | delta | ||
) |
Adjust the timesync clock on an Ethernet device.
This is usually used in conjunction with other Ethdev timesync functions to synchronize the device time using the IEEE1588/802.1AS protocol.
port_id | The port identifier of the Ethernet device. |
delta | The adjustment in nanoseconds. |
int rte_eth_timesync_read_time | ( | uint16_t | port_id, |
struct timespec * | time | ||
) |
Read the time from the timesync clock on an Ethernet device.
This is usually used in conjunction with other Ethdev timesync functions to synchronize the device time using the IEEE1588/802.1AS protocol.
port_id | The port identifier of the Ethernet device. |
time | Pointer to the timespec struct that holds the time. |
int rte_eth_timesync_write_time | ( | uint16_t | port_id, |
const struct timespec * | time | ||
) |
Set the time of the timesync clock on an Ethernet device.
This is usually used in conjunction with other Ethdev timesync functions to synchronize the device time using the IEEE1588/802.1AS protocol.
port_id | The port identifier of the Ethernet device. |
time | Pointer to the timespec struct that holds the time. |
__rte_experimental int rte_eth_read_clock | ( | uint16_t | port_id, |
uint64_t * | clock | ||
) |
Read the current clock counter of an Ethernet device
This returns the current raw clock value of an Ethernet device. It is a raw amount of ticks, with no given time reference. The value returned here is from the same clock than the one filling timestamp field of Rx packets when using hardware timestamp offload. Therefore it can be used to compute a precise conversion of the device clock to the real time.
E.g, a simple heuristic to derivate the frequency would be: uint64_t start, end; rte_eth_read_clock(port, start); rte_delay_ms(100); rte_eth_read_clock(port, end); double freq = (end - start) * 10;
Compute a common reference with: uint64_t base_time_sec = current_time(); uint64_t base_clock; rte_eth_read_clock(port, base_clock);
Then, convert the raw mbuf timestamp with: base_time_sec + (double)(mbuf->timestamp - base_clock) / freq;
This simple example will not provide a very good accuracy. One must at least measure multiple times the frequency and do a regression. To avoid deviation from the system time, the common reference can be repeated from time to time. The integer division can also be converted by a multiplication and a shift for better performance.
port_id | The port identifier of the Ethernet device. |
clock | Pointer to the uint64_t that holds the raw clock value. |
int rte_eth_dev_l2_tunnel_eth_type_conf | ( | uint16_t | port_id, |
struct rte_eth_l2_tunnel_conf * | l2_tunnel | ||
) |
Config l2 tunnel ether type of an Ethernet device for filtering specific tunnel packets by ether type.
port_id | The port identifier of the Ethernet device. |
l2_tunnel | l2 tunnel configuration. |
int rte_eth_dev_l2_tunnel_offload_set | ( | uint16_t | port_id, |
struct rte_eth_l2_tunnel_conf * | l2_tunnel, | ||
uint32_t | mask, | ||
uint8_t | en | ||
) |
Enable/disable l2 tunnel offload functions. Include, 1, The ability of parsing a type of l2 tunnel of an Ethernet device. Filtering, forwarding and offloading this type of tunnel packets depend on this ability. 2, Stripping the l2 tunnel tag. 3, Insertion of the l2 tunnel tag. 4, Forwarding the packets based on the l2 tunnel tag.
port_id | The port identifier of the Ethernet device. |
l2_tunnel | l2 tunnel parameters. |
mask | Indicate the offload function. |
en | Enable or disable this function. |
int rte_eth_dev_get_port_by_name | ( | const char * | name, |
uint16_t * | port_id | ||
) |
Get the port id from device name. The device name should be specified as below:
name | pci address or name of the device |
port_id | pointer to port identifier of the device |
int rte_eth_dev_get_name_by_port | ( | uint16_t | port_id, |
char * | name | ||
) |
Get the device name from port id. The device name is specified as below:
port_id | Port identifier of the device. |
name | Buffer of size RTE_ETH_NAME_MAX_LEN to store the name. |
int rte_eth_dev_adjust_nb_rx_tx_desc | ( | uint16_t | port_id, |
uint16_t * | nb_rx_desc, | ||
uint16_t * | nb_tx_desc | ||
) |
Check that numbers of Rx and Tx descriptors satisfy descriptors limits from the ethernet device information, otherwise adjust them to boundaries.
port_id | The port identifier of the Ethernet device. |
nb_rx_desc | A pointer to a uint16_t where the number of receive descriptors stored. |
nb_tx_desc | A pointer to a uint16_t where the number of transmit descriptors stored. |
int rte_eth_dev_pool_ops_supported | ( | uint16_t | port_id, |
const char * | pool | ||
) |
Test if a port supports specific mempool ops.
port_id | Port identifier of the Ethernet device. | |
[in] | pool | The name of the pool operations to test. |
void* rte_eth_dev_get_sec_ctx | ( | uint16_t | port_id | ) |
Get the security context for the Ethernet device.
port_id | Port identifier of the Ethernet device |
__rte_experimental int rte_eth_dev_hairpin_capability_get | ( | uint16_t | port_id, |
struct rte_eth_hairpin_cap * | cap | ||
) |
Query the device hairpin capabilities.
port_id | The port identifier of the Ethernet device. |
cap | Pointer to a structure that will hold the hairpin capabilities. |
|
inlinestatic |
Retrieve a burst of input packets from a receive queue of an Ethernet device. The retrieved packets are stored in rte_mbuf structures whose pointers are supplied in the rx_pkts array.
The rte_eth_rx_burst() function loops, parsing the RX ring of the receive queue, up to nb_pkts packets, and for each completed RX descriptor in the ring, it performs the following operations:
When retrieving an input packet that was scattered by the controller into multiple receive descriptors, the rte_eth_rx_burst() function appends the associated rte_mbuf buffers to the first buffer of the packet.
The rte_eth_rx_burst() function returns the number of packets actually retrieved, which is the number of rte_mbuf data structures effectively supplied into the rx_pkts array. A return value equal to nb_pkts indicates that the RX queue contained at least rx_pkts packets, and this is likely to signify that other received packets remain in the input queue. Applications implementing a "retrieve as much received packets as possible" policy can check this specific case and keep invoking the rte_eth_rx_burst() function until a value less than nb_pkts is returned.
This receive method has the following advantages:
To summarize, the proposed receive API enables many burst-oriented optimizations in both synchronous and asynchronous packet processing environments with no overhead in both cases.
The rte_eth_rx_burst() function does not provide any error notification to avoid the corresponding overhead. As a hint, the upper-level application might check the status of the device link once being systematically returned a 0 value for a given number of tries.
port_id | The port identifier of the Ethernet device. |
queue_id | The index of the receive queue from which to retrieve input packets. The value must be in the range [0, nb_rx_queue - 1] previously supplied to rte_eth_dev_configure(). |
rx_pkts | The address of an array of pointers to rte_mbuf structures that must be large enough to store nb_pkts pointers in it. |
nb_pkts | The maximum number of packets to retrieve. |
Definition at line 4390 of file rte_ethdev.h.
|
inlinestatic |
Get the number of used descriptors of a rx queue
port_id | The port identifier of the Ethernet device. |
queue_id | The queue id on the specific port. |
Definition at line 4438 of file rte_ethdev.h.
|
inlinestatic |
Check if the DD bit of the specific RX descriptor in the queue has been set
port_id | The port identifier of the Ethernet device. |
queue_id | The queue id on the specific port. |
offset | The offset of the descriptor ID from tail. |
Definition at line 4467 of file rte_ethdev.h.
|
inlinestatic |
Check the status of a Rx descriptor in the queue
It should be called in a similar context than the Rx function:
Since it's a dataplane function, no check is performed on port_id and queue_id. The caller must therefore ensure that the port is enabled and the queue is configured and running.
Note: accessing to a random descriptor in the ring may trigger cache misses and have a performance impact.
port_id | A valid port identifier of the Ethernet device which. |
queue_id | A valid Rx queue identifier on this port. |
offset | The offset of the descriptor starting from tail (0 is the next packet to be received by the driver). |
Definition at line 4514 of file rte_ethdev.h.
|
inlinestatic |
Check the status of a Tx descriptor in the queue.
It should be called in a similar context than the Tx function:
Since it's a dataplane function, no check is performed on port_id and queue_id. The caller must therefore ensure that the port is enabled and the queue is configured and running.
Note: accessing to a random descriptor in the ring may trigger cache misses and have a performance impact.
port_id | A valid port identifier of the Ethernet device which. |
queue_id | A valid Tx queue identifier on this port. |
offset | The offset of the descriptor starting from tail (0 is the place where the next packet will be send). |
Definition at line 4571 of file rte_ethdev.h.
|
inlinestatic |
Send a burst of output packets on a transmit queue of an Ethernet device.
The rte_eth_tx_burst() function is invoked to transmit output packets on the output queue queue_id of the Ethernet device designated by its port_id. The nb_pkts parameter is the number of packets to send which are supplied in the tx_pkts array of rte_mbuf structures, each of them allocated from a pool created with rte_pktmbuf_pool_create(). The rte_eth_tx_burst() function loops, sending nb_pkts packets, up to the number of transmit descriptors available in the TX ring of the transmit queue. For each packet to send, the rte_eth_tx_burst() function performs the following operations:
In the case of a segmented packet composed of a list of rte_mbuf buffers, the rte_eth_tx_burst() function uses several transmit descriptors of the ring.
The rte_eth_tx_burst() function returns the number of packets it actually sent. A return value equal to nb_pkts means that all packets have been sent, and this is likely to signify that other output packets could be immediately transmitted again. Applications that implement a "send as many packets to transmit as possible" policy can check this specific case and keep invoking the rte_eth_tx_burst() function until a value less than nb_pkts is returned.
It is the responsibility of the rte_eth_tx_burst() function to transparently free the memory buffers of packets previously sent. This feature is driven by the tx_free_thresh value supplied to the rte_eth_dev_configure() function at device configuration time. When the number of free TX descriptors drops below this threshold, the rte_eth_tx_burst() function must [attempt to] free the rte_mbuf buffers of those packets whose transmission was effectively completed.
If the PMD is DEV_TX_OFFLOAD_MT_LOCKFREE capable, multiple threads can invoke this function concurrently on the same tx queue without SW lock.
port_id | The port identifier of the Ethernet device. |
queue_id | The index of the transmit queue through which output packets must be sent. The value must be in the range [0, nb_tx_queue - 1] previously supplied to rte_eth_dev_configure(). |
tx_pkts | The address of an array of nb_pkts pointers to rte_mbuf structures which contain the output packets. |
nb_pkts | The maximum number of packets to transmit. |
Definition at line 4658 of file rte_ethdev.h.
|
inlinestatic |
Process a burst of output packets on a transmit queue of an Ethernet device.
The rte_eth_tx_prepare() function is invoked to prepare output packets to be transmitted on the output queue queue_id of the Ethernet device designated by its port_id. The nb_pkts parameter is the number of packets to be prepared which are supplied in the tx_pkts array of rte_mbuf structures, each of them allocated from a pool created with rte_pktmbuf_pool_create(). For each packet to send, the rte_eth_tx_prepare() function performs the following operations:
Since this function can modify packet data, provided mbufs must be safely writable (e.g. modified data cannot be in shared segment).
The rte_eth_tx_prepare() function returns the number of packets ready to be sent. A return value equal to nb_pkts means that all packets are valid and ready to be sent, otherwise stops processing on the first invalid packet and leaves the rest packets untouched.
When this functionality is not implemented in the driver, all packets are are returned untouched.
port_id | The port identifier of the Ethernet device. The value must be a valid port id. |
queue_id | The index of the transmit queue through which output packets must be sent. The value must be in the range [0, nb_tx_queue - 1] previously supplied to rte_eth_dev_configure(). |
tx_pkts | The address of an array of nb_pkts pointers to rte_mbuf structures which contain the output packets. |
nb_pkts | The maximum number of packets to process. |
Definition at line 4746 of file rte_ethdev.h.
|
inlinestatic |
Send any packets queued up for transmission on a port and HW queue
This causes an explicit flush of packets previously buffered via the rte_eth_tx_buffer() function. It returns the number of packets successfully sent to the NIC, and calls the error callback for any unsent packets. Unless explicitly set up otherwise, the default callback simply frees the unsent packets back to the owning mempool.
port_id | The port identifier of the Ethernet device. |
queue_id | The index of the transmit queue through which output packets must be sent. The value must be in the range [0, nb_tx_queue - 1] previously supplied to rte_eth_dev_configure(). |
buffer | Buffer of packets to be transmit. |
Definition at line 4820 of file rte_ethdev.h.
|
static |
Buffer a single packet for future transmission on a port and queue
This function takes a single mbuf/packet and buffers it for later transmission on the particular port and queue specified. Once the buffer is full of packets, an attempt will be made to transmit all the buffered packets. In case of error, where not all packets can be transmitted, a callback is called with the unsent packets as a parameter. If no callback is explicitly set up, the unsent packets are just freed back to the owning mempool. The function returns the number of packets actually sent i.e. 0 if no buffer flush occurred, otherwise the number of packets successfully flushed
port_id | The port identifier of the Ethernet device. |
queue_id | The index of the transmit queue through which output packets must be sent. The value must be in the range [0, nb_tx_queue - 1] previously supplied to rte_eth_dev_configure(). |
buffer | Buffer used to collect packets to be sent. |
tx_pkt | Pointer to the packet mbuf to be sent. |
Definition at line 4873 of file rte_ethdev.h.
uint32_t link_speed |
ETH_SPEED_NUM_
Definition at line 311 of file rte_ethdev.h.
uint16_t link_duplex |
ETH_LINK_[HALF/FULL]_DUPLEX
Definition at line 312 of file rte_ethdev.h.
uint16_t link_autoneg |
ETH_LINK_[AUTONEG/FIXED]
Definition at line 313 of file rte_ethdev.h.
uint16_t link_status |