> > > > > > > > +/** > > > > + * In case of IP reassembly offload failure, ol_flags in mbuf will be > > > > set > > > > + * with RTE_MBUF_F_RX_IPREASSEMBLY_INCOMPLETE and packets will > be > > > returned > > > > + * without alteration. The application can retrieve the attached > > > > fragments > > > > + * using mbuf dynamic field. > > > > + */ > > > > +typedef struct { > > > > + /** > > > > + * Next fragment packet. Application should fetch dynamic field > > > > of > > > > + * each fragment until a NULL is received and nb_frags is 0. > > > > + */ > > > > + struct rte_mbuf *next_frag; > > > > + /** Time spent(in ms) by HW in waiting for further fragments. */ > > > > + uint16_t time_spent; > > > > + /** Number of more fragments attached in mbuf dynamic fields. */ > > > > + uint16_t nb_frags; > > > > +} rte_eth_ip_reass_dynfield_t; > > > > > > > > > Looks like a bit of overkill to me: > > > We do already have 'next' and 'nb_frags' fields inside mbuf, > > > why can't they be used here? Why a separate ones are necessary? > > > > > The next and nb_frags in mbuf is for segmented buffers and not IP fragments. > > But here we will have separate mbufs in each dynfield denoting each of the > > fragments which may have further segmented buffers. > > Makes sense, thanks for explanation. > Though in that case just 'struct rte_mbuf *next_frag' might be enough > (user will walk though the list till mbuf->next_frag != NULL)? > The reason I am asking: current sizeof(rte_eth_ip_reass_dynfield_t) is 16B, > which is quite a lot for mbuf, especially considering that it has to be > continuous > 16B. > Making it smaller (8B) or even splitting into 2 fileds (8+4) will give it more > chances > to coexist with other dynfields.
Even if we drop nb_frags, we will be left with uint16_t time_spent. Are you suggesting to use separate dynfield altogether for 2 bytes of time_spent?