X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fvnet%2Fbuffer.h;h=2144ed3a9dff82dda16f4a32a9c4a9c11f627466;hb=0647cf22f8a8fff87f993e7a1d2eb1a5dbb1bdfe;hp=89dd84567bc42846810902567c598dff7d37043e;hpb=4a7cbcd06b3fa1f44366a606d5c148cce816503b;p=vpp.git diff --git a/src/vnet/buffer.h b/src/vnet/buffer.h index 89dd84567bc..2144ed3a9df 100644 --- a/src/vnet/buffer.h +++ b/src/vnet/buffer.h @@ -66,14 +66,14 @@ _(17, FLOW_REPORT, "flow-report", 1) \ _(18, IS_DVR, "dvr", 1) \ _(19, QOS_DATA_VALID, "qos-data-valid", 0) \ - _(20, AVAIL1, "avail1", 1) \ - _(21, AVAIL2, "avail2", 1) \ - _(22, AVAIL3, "avail3", 1) \ - _(23, AVAIL4, "avail4", 1) \ - _(24, AVAIL5, "avail5", 1) \ - _(25, AVAIL6, "avail6", 1) \ - _(26, AVAIL7, "avail7", 1) \ - _(27, AVAIL8, "avail8", 1) + _(20, GSO, "gso", 0) \ + _(21, AVAIL1, "avail1", 1) \ + _(22, AVAIL2, "avail2", 1) \ + _(23, AVAIL3, "avail3", 1) \ + _(24, AVAIL4, "avail4", 1) \ + _(25, AVAIL5, "avail5", 1) \ + _(26, AVAIL6, "avail6", 1) \ + _(27, AVAIL7, "avail7", 1) /* * Please allocate the FIRST available bit, redefine @@ -190,6 +190,7 @@ typedef struct { u32 next_index; /* index of next node - ignored if "feature" node */ u16 estimated_mtu; /* estimated MTU calculated during reassembly */ + u16 owner_thread_index; }; /* internal variables used during reassembly */ struct @@ -200,6 +201,7 @@ typedef struct u16 range_last; u32 next_range_bi; u16 ip6_frag_hdr_offset; + u16 owner_feature_thread_index; }; } reass; }; @@ -272,7 +274,6 @@ typedef struct /* interface output features */ struct { - u32 flags; u32 sad_index; } ipsec; @@ -389,9 +390,23 @@ typedef struct { u8 __unused; u8 flags; - u16 src_epg; + u16 sclass; } gbp; + /** + * The L4 payload size set on input on GSO enabled interfaces + * when we receive a GSO packet (a chain of buffers with the first one + * having GSO bit set), and needs to persist all the way to the interface-output, + * in case the egress interface is not GSO-enabled - then we need to perform + * the segmentation, and use this value to cut the payload appropriately. + */ + u16 gso_size; + /* size of L4 prototol header */ + u16 gso_l4_hdr_sz; + + /* The union below has a u64 alignment, so this space is unused */ + u32 __unused2[1]; + union { struct @@ -406,7 +421,7 @@ typedef struct u64 pad[1]; u64 pg_replay_timestamp; }; - u32 unused[10]; + u32 unused[8]; }; } vnet_buffer_opaque2_t; @@ -420,6 +435,9 @@ STATIC_ASSERT (sizeof (vnet_buffer_opaque2_t) <= STRUCT_SIZE_OF (vlib_buffer_t, opaque2), "VNET buffer opaque2 meta-data too large for vlib_buffer"); +#define gso_mtu_sz(b) (vnet_buffer2(b)->gso_size + vnet_buffer2(b)->gso_l4_hdr_sz + vnet_buffer(b)->l4_hdr_offset) + + format_function_t format_vnet_buffer; #endif /* included_vnet_buffer_h */