From: "De Lara Guarch, Pablo" <pablo.de.lara.guarch@intel.com>
To: "Verma, Shally" <Shally.Verma@cavium.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>,
"Athreya, Narayana Prasad" <NarayanaPrasad.Athreya@cavium.com>,
"Challa, Mahipal" <Mahipal.Challa@cavium.com>,
"Jacob, Jerin" <Jerin.JacobKollanukkaran@cavium.com>,
"Sahu, Sunila" <Sunila.Sahu@cavium.com>,
"Gupta, Ashish" <Ashish.Gupta@cavium.com>
Subject: Re: [dpdk-dev] [PATCH v2 0/6] compress: add Octeontx ZIP compression PMD
Date: Wed, 11 Jul 2018 08:24:07 +0000 [thread overview]
Message-ID: <E115CCD9D858EF4F90C690B0DCB4D8977F8F5E74@IRSMSX107.ger.corp.intel.com> (raw)
In-Reply-To: <CY4PR0701MB36349BE1ABDBD5C24BAA3FB4F05A0@CY4PR0701MB3634.namprd07.prod.outlook.com>
Hi Shally,
> -----Original Message-----
> From: Verma, Shally [mailto:Shally.Verma@cavium.com]
> Sent: Wednesday, July 11, 2018 6:53 AM
> To: Verma, Shally <Shally.Verma@cavium.com>; De Lara Guarch, Pablo
> <pablo.de.lara.guarch@intel.com>
> Cc: dev@dpdk.org; Athreya, Narayana Prasad
> <NarayanaPrasad.Athreya@cavium.com>; Challa, Mahipal
> <Mahipal.Challa@cavium.com>; Jacob, Jerin
> <Jerin.JacobKollanukkaran@cavium.com>; Sahu, Sunila
> <Sunila.Sahu@cavium.com>; Gupta, Ashish <Ashish.Gupta@cavium.com>
> Subject: RE: [dpdk-dev] [PATCH v2 0/6] compress: add Octeontx ZIP
> compression PMD
>
> Hi Pablo,
>
> Can we close on this? We're targeting it for 18.08.
Yes, this will go into RC2 to have more time for reviews.
>
> Thanks
> Shally
>
>
> >-----Original Message-----
> >From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Shally Verma
> >Sent: 02 July 2018 22:25
> >To: pablo.de.lara.guarch@intel.com
> >Cc: dev@dpdk.org; Athreya, Narayana Prasad
> ><NarayanaPrasad.Athreya@cavium.com>; Challa, Mahipal
> ><Mahipal.Challa@cavium.com>
> >Subject: [dpdk-dev] [PATCH v2 0/6] compress: add Octeontx ZIP
> >compression PMD
> >
> >External Email
> >
> >This patch series add compression PMD for cavium octeontx ZIP module in
> >DPDK compress drivers.
> >Currently PMD only tested for deflate, stateless compression and
> >decompression with direct memory buffers.
> >
> >Changes in v2:
> >- enable OCTEONTX_ZIPVF bydefault, and remove static debug flag
> >- fix meson build in compress/driver/octeontx
> >- fix 32-bit compiler error
> >- remove global declared data structure
> >- header files in alphabetical order
> >- update doc with correct feature support
> >
> >V1 support:
> >Octeontx ZIP PMD implementation
> >Confuguration and Makefile changes to build Octeontx ZIP PMD
> >Documentation ZIP PMD Build support in driver/compress meson for
> >Octeontx ZIP PMD
> >
> >TBDs:
> >Scatter Gather support,
> >Stateful compression/decompression,
> >test for performance
> >
> >This patchset is dependent upon compressdev API.
> >
> >Ashish Gupta (6):
> > compress/octeontx: add octeontx zip PMD support
> > compress/octeontx: add device setup PMD ops
> > compress/octeontx: add xform and stream create support
> > compress/octeontx: add ops enq deq apis
> > doc: add Octeonx zip guide
> > usertools: update devbind for octeontx zip device
> >
> > MAINTAINERS | 5 +
> > config/common_base | 5 +
> > doc/guides/compressdevs/features/octeontx.ini | 22 +
> > doc/guides/compressdevs/index.rst | 1 +
> > doc/guides/compressdevs/octeontx.rst | 107 +++
> > drivers/compress/Makefile | 1 +
> > drivers/compress/meson.build | 2 +-
> > drivers/compress/octeontx/Makefile | 30 +
> > drivers/compress/octeontx/include/zip_regs.h | 721
> +++++++++++++++++++++
> > drivers/compress/octeontx/meson.build | 11 +
> > .../compress/octeontx/rte_pmd_octeontx_version.map | 3 +
> > drivers/compress/octeontx/zip_pmd.c | 625 ++++++++++++++++++
> > drivers/compress/octeontx/zipvf.c | 185 ++++++
> > drivers/compress/octeontx/zipvf.h | 354 ++++++++++
> > mk/rte.app.mk | 1 +
> > usertools/dpdk-devbind.py | 9 +
> > 16 files changed, 2081 insertions(+), 1 deletion(-) create mode 100644
> > doc/guides/compressdevs/features/octeontx.ini
> > create mode 100644 doc/guides/compressdevs/octeontx.rst
> > create mode 100644 drivers/compress/octeontx/Makefile
> > create mode 100644 drivers/compress/octeontx/include/zip_regs.h
> > create mode 100644 drivers/compress/octeontx/meson.build
> > create mode 100644
> > drivers/compress/octeontx/rte_pmd_octeontx_version.map
> > create mode 100644 drivers/compress/octeontx/zip_pmd.c
> > create mode 100644 drivers/compress/octeontx/zipvf.c create mode
> > 100644 drivers/compress/octeontx/zipvf.h
> >
> >--
> >2.14.3
prev parent reply other threads:[~2018-07-11 8:24 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-02 16:54 Shally Verma
2018-07-02 16:54 ` [dpdk-dev] [PATCH v2 1/6] compress/octeontx: add octeontx zip PMD support Shally Verma
2018-07-13 16:23 ` De Lara Guarch, Pablo
2018-07-02 16:54 ` [dpdk-dev] [PATCH v2 2/6] compress/octeontx: add device setup PMD ops Shally Verma
2018-07-13 22:21 ` De Lara Guarch, Pablo
2018-07-02 16:54 ` [dpdk-dev] [PATCH v2 3/6] compress/octeontx: add xform and stream create support Shally Verma
2018-07-13 22:24 ` De Lara Guarch, Pablo
2018-07-17 12:50 ` Verma, Shally
2018-07-02 16:54 ` [dpdk-dev] [PATCH v2 4/6] compress/octeontx: add ops enq deq apis Shally Verma
2018-07-02 16:54 ` [dpdk-dev] [PATCH v2 5/6] doc: add Octeonx zip guide Shally Verma
2018-07-13 22:26 ` De Lara Guarch, Pablo
2018-07-02 16:54 ` [dpdk-dev] [PATCH v2 6/6] usertools: update devbind for octeontx zip device Shally Verma
2018-07-11 5:53 ` [dpdk-dev] [PATCH v2 0/6] compress: add Octeontx ZIP compression PMD Verma, Shally
2018-07-11 8:24 ` De Lara Guarch, Pablo [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E115CCD9D858EF4F90C690B0DCB4D8977F8F5E74@IRSMSX107.ger.corp.intel.com \
--to=pablo.de.lara.guarch@intel.com \
--cc=Ashish.Gupta@cavium.com \
--cc=Jerin.JacobKollanukkaran@cavium.com \
--cc=Mahipal.Challa@cavium.com \
--cc=NarayanaPrasad.Athreya@cavium.com \
--cc=Shally.Verma@cavium.com \
--cc=Sunila.Sahu@cavium.com \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).