DPDK
16.04.0
|
#include <rte_mbuf.h>
Data Fields | |
void * | buf_addr |
phys_addr_t | buf_physaddr |
uint16_t | buf_len |
union { | |
rte_atomic16_t refcnt_atomic | |
uint16_t refcnt | |
}; | |
uint8_t | nb_segs |
uint8_t | port |
uint64_t | ol_flags |
uint32_t | pkt_len |
uint16_t | data_len |
uint16_t | vlan_tci |
union { | |
uint32_t rss | |
struct { | |
uint32_t hi | |
} fdir | |
struct { | |
} sched | |
uint32_t usr | |
} | hash |
uint32_t | seqn |
uint16_t | vlan_tci_outer |
struct rte_mempool * | pool |
struct rte_mbuf * | next |
uint16_t | priv_size |
uint16_t | timesync |
uint32_t | packet_type |
uint32_t | l2_type:4 |
uint32_t | l3_type:4 |
uint32_t | l4_type:4 |
uint32_t | tun_type:4 |
uint32_t | inner_l2_type:4 |
uint32_t | inner_l3_type:4 |
uint32_t | inner_l4_type:4 |
uint32_t | lo |
void * | userdata |
uint64_t | udata64 |
uint64_t | tx_offload |
uint64_t | l2_len:7 |
uint64_t | l3_len:9 |
uint64_t | l4_len:8 |
uint64_t | tso_segsz:16 |
uint64_t | outer_l3_len:9 |
uint64_t | outer_l2_len:7 |
The generic rte_mbuf, containing a packet mbuf.
Definition at line 734 of file rte_mbuf.h.
void* buf_addr |
Virtual address of segment buffer.
Definition at line 737 of file rte_mbuf.h.
phys_addr_t buf_physaddr |
Physical address of segment buffer.
Definition at line 738 of file rte_mbuf.h.
uint16_t buf_len |
rte_atomic16_t refcnt_atomic |
Atomically accessed refcnt
Definition at line 755 of file rte_mbuf.h.
uint16_t refcnt |
Non-atomically accessed refcnt
Definition at line 756 of file rte_mbuf.h.
union { ... } |
16-bit Reference counter. It should only be accessed using the following functions: rte_mbuf_refcnt_update(), rte_mbuf_refcnt_read(), and rte_mbuf_refcnt_set(). The functionality of these functions (atomic, or non-atomic) is controlled by the CONFIG_RTE_MBUF_REFCNT_ATOMIC config option.
uint8_t nb_segs |
Number of segments.
Definition at line 758 of file rte_mbuf.h.
uint8_t port |
Input port.
Definition at line 759 of file rte_mbuf.h.
uint64_t ol_flags |
Offload features.
Definition at line 761 of file rte_mbuf.h.
uint32_t packet_type |
L2/L3/L4 and tunnel information.
Definition at line 771 of file rte_mbuf.h.
uint32_t l2_type |
(Outer) L2 type.
Definition at line 773 of file rte_mbuf.h.
uint32_t l3_type |
(Outer) L3 type.
Definition at line 774 of file rte_mbuf.h.
uint32_t l4_type |
(Outer) L4 type.
Definition at line 775 of file rte_mbuf.h.
uint32_t tun_type |
Tunnel type.
Definition at line 776 of file rte_mbuf.h.
uint32_t inner_l2_type |
Inner L2 type.
Definition at line 777 of file rte_mbuf.h.
uint32_t inner_l3_type |
Inner L3 type.
Definition at line 778 of file rte_mbuf.h.
uint32_t inner_l4_type |
Inner L4 type.
Definition at line 779 of file rte_mbuf.h.
uint32_t pkt_len |
Total pkt len: sum of all segments.
Definition at line 783 of file rte_mbuf.h.
uint16_t data_len |
Amount of data in segment buffer.
Definition at line 784 of file rte_mbuf.h.
uint16_t vlan_tci |
VLAN Tag Control Identifier (CPU order)
Definition at line 785 of file rte_mbuf.h.
uint32_t rss |
RSS hash result if RSS enabled
Definition at line 788 of file rte_mbuf.h.
uint32_t lo |
Second 4 flexible bytes
Definition at line 796 of file rte_mbuf.h.
uint32_t hi |
First 4 flexible bytes or FD ID, dependent on PKT_RX_FDIR_* flag in ol_flags.
Definition at line 799 of file rte_mbuf.h.
struct { ... } fdir |
Filter identifier if FDIR enabled
struct { ... } sched |
Hierarchical scheduler
uint32_t usr |
User defined tags. See rte_distributor_process()
Definition at line 806 of file rte_mbuf.h.
union { ... } hash |
hash information
uint32_t seqn |
Sequence number. See also rte_reorder_insert()
Definition at line 809 of file rte_mbuf.h.
uint16_t vlan_tci_outer |
Outer VLAN Tag Control Identifier (CPU order)
Definition at line 811 of file rte_mbuf.h.
void* userdata |
Can be used for external metadata
Definition at line 817 of file rte_mbuf.h.
uint64_t udata64 |
Allow 8-byte userdata on 32-bit
Definition at line 818 of file rte_mbuf.h.
struct rte_mempool* pool |
Pool from which mbuf was allocated.
Definition at line 821 of file rte_mbuf.h.
struct rte_mbuf* next |
Next segment of scattered packet.
Definition at line 822 of file rte_mbuf.h.
uint64_t tx_offload |
uint64_t l2_len |
L2 (MAC) Header Length.
Definition at line 828 of file rte_mbuf.h.
uint64_t l3_len |
L3 (IP) Header Length.
Definition at line 829 of file rte_mbuf.h.
uint64_t l4_len |
L4 (TCP/UDP) Header Length.
Definition at line 830 of file rte_mbuf.h.
uint64_t tso_segsz |
uint64_t outer_l3_len |
Outer L3 (IP) Hdr Length.
Definition at line 834 of file rte_mbuf.h.
uint64_t outer_l2_len |
Outer L2 (MAC) Hdr Length.
Definition at line 835 of file rte_mbuf.h.
uint16_t priv_size |
Size of the application private data. In case of an indirect mbuf, it stores the direct mbuf private data size.
Definition at line 843 of file rte_mbuf.h.
uint16_t timesync |
Timesync flags for use with IEEE1588.
Definition at line 846 of file rte_mbuf.h.