diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-05-30 17:36:59 +0200 |
---|---|---|
committer | Daniel Borkmann <dborkman@redhat.com> | 2013-05-30 17:36:59 +0200 |
commit | c3fec06db030445563d3945eec6320afa9a3db62 (patch) | |
tree | 67c378766f2e999813f6c32007afed3b69cab6b9 /ring.h | |
parent | 6fbc585ee38b92cea338e96a5f661c811cd28990 (diff) |
ring: add necessary structures and helper functions for v3
Prepare and add some structures an helper functions for TPACKET_V3.
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'ring.h')
-rw-r--r-- | ring.h | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -31,12 +31,21 @@ struct frame_map { struct sockaddr_ll s_ll __align_tpacket(sizeof(struct tpacket2_hdr)); }; +struct block_desc { + uint32_t version; + uint32_t offset_to_priv; + struct tpacket_hdr_v1 h1; +}; + struct ring { struct iovec *frames; uint8_t *mm_space; size_t mm_len; - struct tpacket_req layout; struct sockaddr_ll s_ll; + union { + struct tpacket_req layout; + struct tpacket_req3 layout3; + }; }; static inline void next_rnd_slot(unsigned int *it, struct ring *ring) |