DPDK patches and discussions
 help / color / mirror / Atom feed
From: Akhil Goyal <gakhil@marvell.com>
To: Aakash Sasidharan <asasidharan@marvell.com>
Cc: Jerin Jacob <jerinj@marvell.com>,
	Anoob Joseph <anoobj@marvell.com>,
	Vidya Sagar Velumuri <vvelumuri@marvell.com>,
	Aakash Sasidharan <asasidharan@marvell.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Subject: RE: [PATCH v3 00/12] Fixes and improvements to CNXK crypto PMD
Date: Thu, 27 Jun 2024 05:11:21 +0000	[thread overview]
Message-ID: <CO6PR18MB44845946033FF48CB371D7CAD8D72@CO6PR18MB4484.namprd18.prod.outlook.com> (raw)
In-Reply-To: <20240626105534.1386528-1-asasidharan@marvell.com>

[-- Attachment #1: Type: text/plain, Size: 2385 bytes --]

> Subject: [PATCH v3 00/12] Fixes and improvements to CNXK crypto PMD
> 
> v3:
> * Fix compilation error by moving function meant for arm64 under
>   "#if defined(RTE_ARCH_ARM64)" guard.
> v2:
> * Fix compilation errors observed with arm gcc-13.
> 
> This series adds improvements to CNXK crypto PMD and fixes aes-gcm zero
> length input failure.
> 
> Aakash Sasidharan (1):
>   crypto/cnxk: fix aes-gcm zero len input cases
> 
> Anoob Joseph (11):
>   common/cnxk: add comments to denote skipped entries
>   crypto/cnxk: update version map file with PMD APIs
>   common/cnxk: make inline dev PF func get as idev API
>   crypto/cnxk: add flow control in Rx inject path
>   crypto/cnxk: use SSO PF func of inline device in inst
>   crypto/cnxk: use NEON for Rx inject inst preparation
>   crypto/cnxk: remove init of CPT result field in packet
>   crypto/cnxk: add dual submission in Rx inject
>   crypto/cnxk: update sess pointer for next iteration
>   crypto/cnxk: make pack IV variable as const
>   crypto/cnxk: enable dual submission to CPT
> 
>  drivers/common/cnxk/roc_ae.c              |   6 +-
>  drivers/common/cnxk/roc_ae_fpm_tables.c   |   6 +-
>  drivers/common/cnxk/roc_cpt.c             |  17 +-
>  drivers/common/cnxk/roc_cpt.h             |  51 +++--
>  drivers/common/cnxk/roc_idev.c            |   6 +
>  drivers/common/cnxk/roc_idev.h            |   2 +
>  drivers/common/cnxk/roc_nix_inl.h         |   1 -
>  drivers/common/cnxk/roc_nix_inl_dev.c     |   6 -
>  drivers/common/cnxk/version.map           |   2 +-
>  drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 234 +++++++++-------------
>  drivers/crypto/cnxk/cn10k_cryptodev_ops.h |  60 +++++-
>  drivers/crypto/cnxk/cnxk_cryptodev.h      |   2 +-
>  drivers/crypto/cnxk/cnxk_cryptodev_ops.c  |  40 ++--
>  drivers/crypto/cnxk/cnxk_cryptodev_ops.h  |   2 +
>  drivers/crypto/cnxk/cnxk_se.h             |  55 ++---
>  drivers/crypto/cnxk/rte_pmd_cnxk_crypto.h |   2 +
>  drivers/crypto/cnxk/version.map           |   8 +
>  drivers/event/cnxk/cnxk_eventdev_adptr.c  |   4 +-
>  drivers/net/cnxk/cn10k_ethdev_sec.c       |   2 +-
>  drivers/net/cnxk/cnxk_ethdev_telemetry.c  |   3 +-
>  20 files changed, 275 insertions(+), 234 deletions(-)
> 
Updated patch titles and description of some of the patches. Please review.
Series applied to dpdk-next-crypto

Thanks.

[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 15479 bytes --]

      parent reply	other threads:[~2024-06-27  5:11 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-20 14:58 [PATCH 00/12] fixes " Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 01/12] common/cnxk: add comments to denote skipped entries Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 02/12] crypto/cnxk: update version map file with PMD APIs Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 03/12] common/cnxk: make inline dev PF func get as idev API Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 04/12] crypto/cnxk: add flow control in Rx inject path Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 05/12] crypto/cnxk: use SSO PF func of inline device in inst Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 06/12] crypto/cnxk: use NEON for Rx inject inst preparation Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 07/12] crypto/cnxk: remove init of CPT result field in packet Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 08/12] crypto/cnxk: add dual submission in Rx inject Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 09/12] crypto/cnxk: update sess pointer for next iteration Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 10/12] crypto/cnxk: fix aes-gcm zero len input cases Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 11/12] crypto/cnxk: make pack IV variable as const Aakash Sasidharan
2024-06-20 14:58 ` [PATCH 12/12] crypto/cnxk: enable dual submission to CPT Aakash Sasidharan
2024-06-24  6:23 ` [PATCH v2 00/12] fixes and improvements to CNXK crypto PMD Aakash Sasidharan
2024-06-24  6:23   ` [PATCH v2 01/12] common/cnxk: add comments to denote skipped entries Aakash Sasidharan
2024-06-24  6:23   ` [PATCH v2 02/12] crypto/cnxk: update version map file with PMD APIs Aakash Sasidharan
2024-06-24  6:23   ` [PATCH v2 03/12] common/cnxk: make inline dev PF func get as idev API Aakash Sasidharan
2024-06-24  6:23   ` [PATCH v2 04/12] crypto/cnxk: add flow control in Rx inject path Aakash Sasidharan
2024-06-24  6:23   ` [PATCH v2 05/12] crypto/cnxk: use SSO PF func of inline device in inst Aakash Sasidharan
2024-06-24  6:23   ` [PATCH v2 06/12] crypto/cnxk: use NEON for Rx inject inst preparation Aakash Sasidharan
2024-06-24  6:23   ` [PATCH v2 07/12] crypto/cnxk: remove init of CPT result field in packet Aakash Sasidharan
2024-06-24  6:23   ` [PATCH v2 08/12] crypto/cnxk: add dual submission in Rx inject Aakash Sasidharan
2024-06-26  6:41     ` Akhil Goyal
2024-06-24  6:23   ` [PATCH v2 09/12] crypto/cnxk: update sess pointer for next iteration Aakash Sasidharan
2024-06-24  6:23   ` [PATCH v2 10/12] crypto/cnxk: fix aes-gcm zero len input cases Aakash Sasidharan
2024-06-24  6:24   ` [PATCH v2 11/12] crypto/cnxk: make pack IV variable as const Aakash Sasidharan
2024-06-24  6:24   ` [PATCH v2 12/12] crypto/cnxk: enable dual submission to CPT Aakash Sasidharan
2024-06-26 10:55   ` [PATCH v3 00/12] Fixes and improvements to CNXK crypto PMD Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 01/12] common/cnxk: add comments to denote skipped entries Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 02/12] crypto/cnxk: update version map file with PMD APIs Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 03/12] common/cnxk: make inline dev PF func get as idev API Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 04/12] crypto/cnxk: add flow control in Rx inject path Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 05/12] crypto/cnxk: use SSO PF func of inline device in inst Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 06/12] crypto/cnxk: use NEON for Rx inject inst preparation Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 07/12] crypto/cnxk: remove init of CPT result field in packet Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 08/12] crypto/cnxk: add dual submission in Rx inject Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 09/12] crypto/cnxk: update sess pointer for next iteration Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 10/12] crypto/cnxk: fix aes-gcm zero len input cases Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 11/12] crypto/cnxk: make pack IV variable as const Aakash Sasidharan
2024-06-26 10:55     ` [PATCH v3 12/12] crypto/cnxk: enable dual submission to CPT Aakash Sasidharan
2024-06-27  5:11     ` Akhil Goyal [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=CO6PR18MB44845946033FF48CB371D7CAD8D72@CO6PR18MB4484.namprd18.prod.outlook.com \
    --to=gakhil@marvell.com \
    --cc=anoobj@marvell.com \
    --cc=asasidharan@marvell.com \
    --cc=dev@dpdk.org \
    --cc=jerinj@marvell.com \
    --cc=vvelumuri@marvell.com \
    /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).