mbox series

[v3,0/3] compress/qat: add stateful decompression

Message ID 20190920200628.6444-1-adamx.dybkowski@intel.com (mailing list archive)
Headers
Series compress/qat: add stateful decompression |

Message

Dybkowski, AdamX Sept. 20, 2019, 8:06 p.m. UTC
  This patchset adds the stateful decompression feature
to the QAT PMD, together with the documentation updates
and two new unit tests.
---
v3:
* Minor corrections in features list in the documentation.

v2:
* Typo correction in the error message.

Adam Dybkowski (3):
  common/qat: add QAT RAM bank definitions
  compress/qat: add stateful decompression
  test/compress: add stateful decompression tests

 app/test/test_compressdev.c                  | 449 ++++++++++++++++---
 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/common/qat/qat_adf/icp_qat_fw_comp.h |  73 +++
 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 +
 10 files changed, 929 insertions(+), 116 deletions(-)
  

Comments

Fiona Trahe Sept. 23, 2019, 3:56 p.m. UTC | #1
> -----Original Message-----
> From: Dybkowski, AdamX
> Sent: Friday, September 20, 2019 9:06 PM
> To: dev@dpdk.org; Trahe, Fiona <fiona.trahe@intel.com>; Trybula, ArturX
> <arturx.trybula@intel.com>; akhil.goyal@nxp.com
> Cc: Dybkowski, AdamX <adamx.dybkowski@intel.com>
> Subject: [PATCH v3 0/3] compress/qat: add stateful decompression
> 
> This patchset adds the stateful decompression feature
> to the QAT PMD, together with the documentation updates
> and two new unit tests.
> ---
> v3:
> * Minor corrections in features list in the documentation.
> 
> v2:
> * Typo correction in the error message.
> 
> Adam Dybkowski (3):
>   common/qat: add QAT RAM bank definitions
>   compress/qat: add stateful decompression
>   test/compress: add stateful decompression tests
> 
>  app/test/test_compressdev.c                  | 449 ++++++++++++++++---
>  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/common/qat/qat_adf/icp_qat_fw_comp.h |  73 +++
>  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 +
>  10 files changed, 929 insertions(+), 116 deletions(-)
> 
> --
> 2.17.1
Series-acked-by: Fiona Trahe <fiona.trahe@intel.com>
  
Akhil Goyal Sept. 27, 2019, 2:42 p.m. UTC | #2
> > This patchset adds the stateful decompression feature
> > to the QAT PMD, together with the documentation updates
> > and two new unit tests.
> > ---
> > v3:
> > * Minor corrections in features list in the documentation.
> >
> > v2:
> > * Typo correction in the error message.
> >
> > Adam Dybkowski (3):
> >   common/qat: add QAT RAM bank definitions
> >   compress/qat: add stateful decompression
> >   test/compress: add stateful decompression tests
> >
> >  app/test/test_compressdev.c                  | 449 ++++++++++++++++---
> >  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/common/qat/qat_adf/icp_qat_fw_comp.h |  73 +++
> >  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 +
> >  10 files changed, 929 insertions(+), 116 deletions(-)
> >
> > --
> > 2.17.1
> Series-acked-by: Fiona Trahe <fiona.trahe@intel.com>
Applied to dpdk-next-crypto

Thanks.