Re: [dpdk-dev] [PATCH v3 07/11] drivers/raw: introduce skeleton rawdev driver

2018-01-30 Thread Thomas Monjalon
There is a compilation error with clang-5.0: 30/01/2018 15:57, Shreyansh Jain: > +struct queue_buffers { > + void *bufs[SKELETON_QUEUE_MAX_DEPTH]; > +}; > + > +static struct queue_buffers queue_buf[SKELETON_MAX_QUEUES] = {0}; drivers/raw/skeleton_rawdev/skeleton_rawdev.c:46:63: fatal error: s

[dpdk-dev] [PATCH v3 07/11] drivers/raw: introduce skeleton rawdev driver

2018-01-30 Thread Shreyansh Jain
Skeleton rawdevice driver, on the lines of eventdev skeleton, is for showcasing the rawdev library. This driver implements some of the operations of the library based on which a test module can be developed. Design of skeleton involves a virtual device which is plugged into VDEV bus on initializat