Re: [dpdk-dev] [PATCH v2 1/4] mbuf: add accessor function for private data area

2018-07-13 Thread Thomas Monjalon
26/06/2018 09:39, Olivier Matz: > Hi Dan, > > On Mon, Jun 18, 2018 at 04:35:34PM -0700, Dan Gora wrote: > > Add an inline accessor function to return the starting address of > > the private data area in the supplied mbuf. > > > > This allows applications to easily access the private data area bet

Re: [dpdk-dev] [PATCH v2 1/4] mbuf: add accessor function for private data area

2018-06-26 Thread Olivier Matz
Hi Dan, On Mon, Jun 18, 2018 at 04:35:34PM -0700, Dan Gora wrote: > Add an inline accessor function to return the starting address of > the private data area in the supplied mbuf. > > This allows applications to easily access the private data area between > the struct rte_mbuf and the data buffer

Re: [dpdk-dev] [PATCH v2 1/4] mbuf: add accessor function for private data area

2018-06-19 Thread Andrew Rybchenko
On 06/19/2018 02:35 AM, Dan Gora wrote: Add an inline accessor function to return the starting address of the private data area in the supplied mbuf. This allows applications to easily access the private data area between the struct rte_mbuf and the data buffer in the specified mbuf without crea

[dpdk-dev] [PATCH v2 1/4] mbuf: add accessor function for private data area

2018-06-18 Thread Dan Gora
Add an inline accessor function to return the starting address of the private data area in the supplied mbuf. This allows applications to easily access the private data area between the struct rte_mbuf and the data buffer in the specified mbuf without creating private macros or accessor functions.