typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long uint64_t;
#define RTE_CACHE_LINE_SIZE 64
* Force alignment
*/
#define __rte_aligned(a) __attribute__((__aligned__(a)))
* Force alignment to cache line.
*/
#define __rte_cache_aligned __rte_aligned(RTE_CACHE_LINE_SIZE)
#define RTE_LIBRTE_IP_FRAG_MAX_FRAG 4
enum {
IP_LAST_FRAG_IDX,
IP_FIRST_FRAG_IDX,
IP_MIN_FRAG_NUM,
IP_MAX_FRAG_NUM = RTE_LIBRTE_IP_FRAG_MAX_FRAG,
};
struct ip_frag {
uint16_t ofs;
uint16_t len;
struct rte_mbuf *mb;
};
struct ip_frag_key {
uint64_t src_dst[4];
uint32_t id;
uint32_t key_len;
};
#define TAILQ_ENTRY(type) \
struct { \
struct type *tqe_next; \
struct type **tqe_prev; \
}
* @internal Fragmented packet to reassemble.
* First two entries in the frags[] array are for the last and first fragments.
*/
struct ip_frag_pkt {
TAILQ_ENTRY(ip_frag_pkt) lru;
struct ip_frag_key key;
uint64_t start;
uint32_t total_size;
uint32_t frag_size;
uint32_t last_idx;
struct ip_frag frags[IP_MAX_FRAG_NUM];
} __rte_cache_aligned;