Hi Adam,
> -----Original Message----- > From: Dybkowski, AdamX > Sent: Friday, September 20, 2019 1:45 PM > To: dev@dpdk.org; Trahe, Fiona <fiona.tr...@intel.com>; Trybula, ArturX > <arturx.tryb...@intel.com>; akhil.go...@nxp.com > Cc: Dybkowski, AdamX <adamx.dybkow...@intel.com> > Subject: [PATCH v2 2/3] compress/qat: add stateful decompression > > This patch adds the stateful decompression feature > to the DPDK QAT PMD. > > Signed-off-by: Adam Dybkowski <adamx.dybkow...@intel.com> > --- > doc/guides/compressdevs/features/default.ini | 37 +-- > doc/guides/compressdevs/features/qat.ini | 21 +- > doc/guides/compressdevs/qat_comp.rst | 5 + > doc/guides/rel_notes/release_19_11.rst | 4 + > drivers/compress/qat/qat_comp.c | 256 +++++++++++++++++-- > drivers/compress/qat/qat_comp.h | 32 +++ > drivers/compress/qat/qat_comp_pmd.c | 166 +++++++++++- > drivers/compress/qat/qat_comp_pmd.h | 2 + > 8 files changed, 462 insertions(+), 61 deletions(-) > > diff --git a/doc/guides/compressdevs/features/default.ini > b/doc/guides/compressdevs/features/default.ini > index 829e4df61..5b783b842 100644 > --- a/doc/guides/compressdevs/features/default.ini > +++ b/doc/guides/compressdevs/features/default.ini > @@ -6,21 +6,22 @@ > ; the features table in the documentation. > ; > [Features] > -HW Accelerated = > -CPU SSE = > -CPU AVX = > -CPU AVX2 = > -CPU AVX512 = > -CPU NEON = > -Stateful = > -Pass-through = > -OOP SGL In SGL Out = > -OOP SGL In LB Out = > -OOP LB In SGL Out = > -Deflate = > -LZS = > -Adler32 = > -Crc32 = > -Adler32&Crc32 = > -Fixed = > -Dynamic = > +HW Accelerated = > +Stateful Decompression = > +CPU SSE = > +CPU AVX = > +CPU AVX2 = > +CPU AVX512 = > +CPU NEON = > +Stateful = [Fiona] Pease move Stateful Decompression down after this and rename this to Stateful Compression And check if any other driver ini files need corresponding update - though I don't expect so, as I don't think any stateful support there yet. And as you're sending a v3, please add sections for v2 changes and v3 changes in the cover letter.