DPDK
16.07.2
|
#include <rte_ethdev.h>
Data Fields | |
uint64_t | ipackets |
uint64_t | opackets |
uint64_t | ibytes |
uint64_t | obytes |
uint64_t | imissed |
uint64_t | ierrors |
uint64_t | oerrors |
uint64_t | rx_nombuf |
uint64_t | q_ipackets [RTE_ETHDEV_QUEUE_STAT_CNTRS] |
uint64_t | q_opackets [RTE_ETHDEV_QUEUE_STAT_CNTRS] |
uint64_t | q_ibytes [RTE_ETHDEV_QUEUE_STAT_CNTRS] |
uint64_t | q_obytes [RTE_ETHDEV_QUEUE_STAT_CNTRS] |
uint64_t | q_errors [RTE_ETHDEV_QUEUE_STAT_CNTRS] |
A structure used to retrieve statistics for an Ethernet port.
Definition at line 194 of file rte_ethdev.h.
uint64_t ipackets |
Total number of successfully received packets.
Definition at line 195 of file rte_ethdev.h.
uint64_t opackets |
Total number of successfully transmitted packets.
Definition at line 196 of file rte_ethdev.h.
uint64_t ibytes |
Total number of successfully received bytes.
Definition at line 197 of file rte_ethdev.h.
uint64_t obytes |
Total number of successfully transmitted bytes.
Definition at line 198 of file rte_ethdev.h.
uint64_t imissed |
Total of RX packets dropped by the HW, because there are no available mbufs (i.e. RX queues are full).
Definition at line 200 of file rte_ethdev.h.
uint64_t ierrors |
Total number of erroneous received packets.
Definition at line 203 of file rte_ethdev.h.
uint64_t oerrors |
Total number of failed transmitted packets.
Definition at line 204 of file rte_ethdev.h.
uint64_t rx_nombuf |
Total number of RX mbuf allocation failures.
Definition at line 205 of file rte_ethdev.h.
uint64_t q_ipackets[RTE_ETHDEV_QUEUE_STAT_CNTRS] |
Total number of queue RX packets.
Definition at line 207 of file rte_ethdev.h.
uint64_t q_opackets[RTE_ETHDEV_QUEUE_STAT_CNTRS] |
Total number of queue TX packets.
Definition at line 209 of file rte_ethdev.h.
uint64_t q_ibytes[RTE_ETHDEV_QUEUE_STAT_CNTRS] |
Total number of successfully received queue bytes.
Definition at line 211 of file rte_ethdev.h.
uint64_t q_obytes[RTE_ETHDEV_QUEUE_STAT_CNTRS] |
Total number of successfully transmitted queue bytes.
Definition at line 213 of file rte_ethdev.h.
uint64_t q_errors[RTE_ETHDEV_QUEUE_STAT_CNTRS] |
Total number of queue packets received that are dropped.
Definition at line 215 of file rte_ethdev.h.