> -----Original Message-----
> From: Verma, Shally [mailto:shally.ve...@cavium.com]
> Sent: Monday, July 23, 2018 1:53 PM
> To: De Lara Guarch, Pablo <pablo.de.lara.gua...@intel.com>
> Cc: dev@dpdk.org; Athreya, Narayana Prasad
> <narayanaprasad.athr...@cavium.com>; Challa, Mahipal
> <mahipal.cha...@cavium.com>; Gupta, Ashish <ashish.gu...@cavium.com>;
> Sahu, Sunila <sunila.s...@cavium.com>; Sahu, Sunila
> <sunila.s...@cavium.com>
> Subject: RE: [PATCH v3 4/5] compress/zlib: support burst enqueue/dequeue
>
> Hi Pablo
>
> >-----Original Message-----
> >From: De Lara Guarch, Pablo <pablo.de.lara.gua...@intel.com>
> >Sent: 23 July 2018 18:07
> >To: Verma, Shally <shally.ve...@cavium.com>
> >Cc: dev@dpdk.org; Athreya, Narayana Prasad
> ><narayanaprasad.athr...@cavium.com>; Challa, Mahipal
> ><mahipal.cha...@cavium.com>; Gupta, Ashish <ashish.gu...@cavium.com>;
> >Sahu, Sunila <sunila.s...@cavium.com>; Sahu, Sunila
> ><sunila.s...@cavium.com>
> >Subject: RE: [PATCH v3 4/5] compress/zlib: support burst
> >enqueue/dequeue
> >
> >External Email
> >
> >> -----Original Message-----
> >> From: Shally Verma [mailto:shally.ve...@caviumnetworks.com]
> >> Sent: Saturday, July 21, 2018 7:18 PM
> >> To: De Lara Guarch, Pablo <pablo.de.lara.gua...@intel.com>
> >> Cc: dev@dpdk.org; pathr...@caviumnetworks.com;
> >> mcha...@caviumnetworks.com; ashish.gu...@caviumnetworks.com;
> >> sunila.s...@caviumnetworks.com; Sunila Sahu
> >> <ss...@caviumnetworks.com>
> >> Subject: [PATCH v3 4/5] compress/zlib: support burst enqueue/dequeue
> >>
> >> From: Sunila Sahu <ss...@caviumnetworks.com>
> >>
> >> Signed-off-by: Sunila Sahu <sunila.s...@caviumnetworks.com>
> >> Signed-off-by: Shally Verma <shally.ve...@caviumnetworks.com>
> >> Signed-off-by: Ashish Gupta <ashish.gu...@caviumnetworks.com>
> >> ---
> >> drivers/compress/zlib/zlib_pmd.c | 254
> >
> >...
> >
> >> +def_end:
> >> + /* Update op stats */
> >> + switch (op->status) {
> >> + case RTE_COMP_OP_STATUS_SUCCESS:
> >> + op->consumed += strm->total_in;
> >
> >Compilation issue here:
> >
> >drivers/compress/zlib/zlib_pmd.c:94:16: error: this statement may fall
> >through
> [-Werror=implicit-fallthrough=]
> > op->consumed += strm->total_in;
> > ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
> >
> >I think you are missing a "/* Fall-through */" comment here.
> OK. I will send next patch immediately with this fix. But which compiler
> version
> you following, since this isn't seen during our build (which we did on
> multiple
> platforms) so want to understand what is the environment we need to have to
> avoid such regressions.
I see this with gcc 7.2.1 (on Fedora 27).
Pablo
>
> Thanks
> Shally
>
> >
> >Thanks,
> >Pablo
> >
> >> + case RTE_COMP_OP_STATUS_OUT_OF_SPACE_TERMINATED:
> >> + op->produced += strm->total_out;
> >> + break;