DPDK patches and discussions
 help / color / mirror / Atom feed
From: "De Lara Guarch, Pablo" <pablo.de.lara.guarch@intel.com>
To: "Doherty, Declan" <declan.doherty@intel.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Cc: "Doherty, Declan" <declan.doherty@intel.com>
Subject: Re: [dpdk-dev] [PATCH v2 0/3] Break cryptodev dependency on bus	infrastructure
Date: Wed, 25 Oct 2017 16:06:58 +0000	[thread overview]
Message-ID: <E115CCD9D858EF4F90C690B0DCB4D8976CC3CEE3@IRSMSX108.ger.corp.intel.com> (raw)
In-Reply-To: <20171025120036.22458-1-declan.doherty@intel.com>



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Declan Doherty
> Sent: Wednesday, October 25, 2017 1:01 PM
> To: dev@dpdk.org
> Cc: Doherty, Declan <declan.doherty@intel.com>
> Subject: [dpdk-dev] [PATCH v2 0/3] Break cryptodev dependency on bus
> infrastructure
> 
> This patch set breaks the dependency of the cryptodev library on both the
> virtual and PCI device infrastructure.
> 
> It introduces new bus independent crypto PMD driver assist functions for
> parsing initialisation parameters, and creation/destruction of device
> instances.
> 
> It deprecates all function calls to the bus dependent functions and updates
> all crypto PMDs to use the newly introduced device independent functions.
> 
> V2:
> - Add release notes updates for new APIs and API removals
> - Addresses comments on string and unsigned integer parsing functions
> - logging and doxygen comments tidy up
> 
> Declan Doherty (3):
>   cryptodev: add new APIs to assist PMD initialisation
>   cryptodev: break dependency on virtual device bus
>   cryptodev: break dependency on PCI device bus
> 
>  doc/guides/rel_notes/deprecation.rst           |   5 -
>  doc/guides/rel_notes/release_17_11.rst         |  20 +++
>  drivers/crypto/aesni_gcm/aesni_gcm_pmd.c       |  56 +++----
>  drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c     |  73 ++++-----
>  drivers/crypto/armv8/rte_armv8_pmd.c           |  41 ++---
>  drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c    |  11 +-
>  drivers/crypto/dpaa_sec/dpaa_sec.c             |  14 +-
>  drivers/crypto/kasumi/rte_kasumi_pmd.c         |  49 ++----
>  drivers/crypto/mrvl/rte_mrvl_pmd.c             |  56 +++----
>  drivers/crypto/null/null_crypto_pmd.c          |  72 ++++-----
>  drivers/crypto/openssl/rte_openssl_pmd.c       |  42 ++---
>  drivers/crypto/qat/qat_crypto.c                |   3 +-
>  drivers/crypto/qat/rte_qat_cryptodev.c         |  55 +++++--
>  drivers/crypto/scheduler/scheduler_pmd.c       |  45 ++----
>  drivers/crypto/scheduler/scheduler_pmd_ops.c   |   3 +-
>  drivers/crypto/snow3g/rte_snow3g_pmd.c         |  41 ++---
>  drivers/crypto/zuc/rte_zuc_pmd.c               |  41 ++---
>  lib/librte_cryptodev/Makefile                  |   2 -
>  lib/librte_cryptodev/rte_cryptodev.h           |   8 +-
>  lib/librte_cryptodev/rte_cryptodev_pci.h       |  92 -----------
>  lib/librte_cryptodev/rte_cryptodev_pmd.c       | 213 ++++++++++-------------
> --
>  lib/librte_cryptodev/rte_cryptodev_pmd.h       |  86 ++++++++++
>  lib/librte_cryptodev/rte_cryptodev_vdev.h      | 100 ------------
>  lib/librte_cryptodev/rte_cryptodev_version.map |   7 +-
>  24 files changed, 424 insertions(+), 711 deletions(-)  delete mode 100644
> lib/librte_cryptodev/rte_cryptodev_pci.h
>  delete mode 100644 lib/librte_cryptodev/rte_cryptodev_vdev.h
> 
> --
> 2.9.4

Applied to dpdk-next-crypto.
Thanks,

Pablo

      parent reply	other threads:[~2017-10-25 16:07 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-20 21:21 [dpdk-dev] [PATCH 0/3] Break dependency on bus infrastructure* Declan Doherty
2017-10-20 21:21 ` [dpdk-dev] [PATCH 1/3] cryptodev: add new APIs to assist PMD initialisation Declan Doherty
2017-10-24 11:03   ` De Lara Guarch, Pablo
2017-10-24 14:09   ` Tomasz Duszynski
2017-10-25  0:59     ` Gaëtan Rivet
2017-10-20 21:21 ` [dpdk-dev] [PATCH 2/3] cryptodev: break dependency on virtual device bus Declan Doherty
2017-10-24 11:18   ` De Lara Guarch, Pablo
2017-10-24 11:32   ` Akhil Goyal
2017-10-25  6:18   ` Tomasz Duszynski
2017-10-25  7:45     ` De Lara Guarch, Pablo
2017-10-20 21:21 ` [dpdk-dev] [PATCH 3/3] cryptodev: break dependency on rte_pci.h Declan Doherty
2017-10-24 11:23   ` De Lara Guarch, Pablo
2017-10-23  9:21 ` [dpdk-dev] [PATCH 0/3] Break dependency on bus infrastructure* Doherty, Declan
2017-10-25  0:50 ` Gaëtan Rivet
2017-10-25 12:00 ` [dpdk-dev] [PATCH v2 0/3] Break cryptodev dependency on bus infrastructure Declan Doherty
2017-10-25 12:00   ` [dpdk-dev] [PATCH v2 1/3] cryptodev: add new APIs to assist PMD initialisation Declan Doherty
2017-10-25 15:56     ` Trahe, Fiona
2017-10-25 12:00   ` [dpdk-dev] [PATCH v2 2/3] cryptodev: break dependency on virtual device bus Declan Doherty
2017-10-25 12:00   ` [dpdk-dev] [PATCH v2 3/3] cryptodev: break dependency on PCI " Declan Doherty
2017-10-25 15:55     ` Trahe, Fiona
2017-10-25 14:36   ` [dpdk-dev] [PATCH v2 0/3] Break cryptodev dependency on bus infrastructure De Lara Guarch, Pablo
2017-10-25 16:06   ` 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=E115CCD9D858EF4F90C690B0DCB4D8976CC3CEE3@IRSMSX108.ger.corp.intel.com \
    --to=pablo.de.lara.guarch@intel.com \
    --cc=declan.doherty@intel.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).