Hi, On 02/19/2015 10:20 AM, Olivier MATZ wrote: > Hi Sergio, > > On 02/18/2015 03:58 PM, Sergio Gonzalez Monroy wrote: >> This library provides reordering capability for out of order mbufs based >> on a sequence number in the mbuf structure. >> >> Signed-off-by: Reshma Pattan <reshma.pattan at intel.com> >> Signed-off-by: Richardson Bruce <bruce.richardson at intel.com> >> Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy at intel.com> >> >> [...] >> >> --- a/lib/librte_mbuf/rte_mbuf.h >> +++ b/lib/librte_mbuf/rte_mbuf.h >> @@ -289,6 +289,9 @@ struct rte_mbuf { >> uint32_t usr; /**< User defined tags. See >> @rte_distributor_process */ >> } hash; /**< hash information */ >> >> + /* sequence number - field used in distributor and reorder >> library */ >> + uint32_t seqn; >> + >> /* second cache line - fields only used in slow path or on TX */ >> MARKER cacheline1 __rte_cache_aligned; >> > > Just one small comment about rte_mbuf: the comment should be in doxygen > style.
I've just realized it's already applied. I'll submit a patch for this. Olivier