Re: [dpdk-dev] [PATCH v3 02/16] net/avp: public header files

2017-03-03 Thread Legacy, Allain
> -Original Message- > From: Chas Williams [mailto:3ch...@gmail.com] > > + */ > > +#ifndef RTE_AVP_ALIGNMENT > > +#define RTE_AVP_ALIGNMENT 64 > > +#endif > > This is already provided by DPDK as CONFIG_RTE_CACHE_LINE_SIZE We took another look at our usage of this. We need it for another

Re: [dpdk-dev] [PATCH v3 02/16] net/avp: public header files

2017-03-03 Thread Chas Williams
On Wed, 2017-03-01 at 19:19 -0500, Allain Legacy wrote: > + > +/** > + * Memory aligment (cache aligned) Spelling -- alignment. > + */ > +#ifndef RTE_AVP_ALIGNMENT > +#define RTE_AVP_ALIGNMENT 64 > +#endif This is already provided by DPDK as CONFIG_RTE_CACHE_LINE_SIZE > + * Defines the number o

[dpdk-dev] [PATCH v3 02/16] net/avp: public header files

2017-03-01 Thread Allain Legacy
Adds public/exported header files for the AVP PMD. The AVP device is a shared memory based device. The structures and constants that define the method of operation of the device must be visible by both the PMD and the host DPDK application. They must not change without proper version controls an