mbox series

[v2,0/2] add partial SGL support to AESNI_MB

Message ID 20220511123045.1154799-1-ciara.power@intel.com (mailing list archive)
Headers
Series add partial SGL support to AESNI_MB |

Message

Power, Ciara May 11, 2022, 12:30 p.m. UTC
  This patchset adds SGL support for GCM and CHACHA20-POLY1305 algorithms,
using the IPSec-MB JOB API.

Supported SGL types:
 - INPLACE SGL
 - OOP SGL IN, LB OUT
 - OOP SGL IN, SGL OUT

The SGL Feature Flags for AESNI_MB PMD are not added,
as it does not yet support SGL for all other algorithms.

---
v2:
  - Moved GCM and CHACHAPOLY context from session to qp_data.
  - Removed redundant if condition checks.
  - Added setting job SGL state to IMB_SGL_INIT for the first job.
  - Squashed third patch into other patches.

Ciara Power (2):
  crypto/ipsec_mb: add GCM SGL support to aesni-mb
  crypto/ipsec_mb: add chachapoly SGL support to aesni-mb

 drivers/crypto/ipsec_mb/pmd_aesni_mb.c      | 162 +++++++++++++++++++-
 drivers/crypto/ipsec_mb/pmd_aesni_mb_priv.h |   4 +
 2 files changed, 161 insertions(+), 5 deletions(-)
  

Comments

De Lara Guarch, Pablo May 11, 2022, 3:44 p.m. UTC | #1
> -----Original Message-----
> From: Power, Ciara <ciara.power@intel.com>
> Sent: Wednesday, May 11, 2022 1:31 PM
> To: dev@dpdk.org
> Cc: Zhang, Roy Fan <roy.fan.zhang@intel.com>; Ji, Kai <kai.ji@intel.com>; De
> Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; Power, Ciara
> <ciara.power@intel.com>
> Subject: [PATCH v2 0/2] add partial SGL support to AESNI_MB
> 
> This patchset adds SGL support for GCM and CHACHA20-POLY1305 algorithms,
> using the IPSec-MB JOB API.
> 
> Supported SGL types:
>  - INPLACE SGL
>  - OOP SGL IN, LB OUT
>  - OOP SGL IN, SGL OUT
> 
> The SGL Feature Flags for AESNI_MB PMD are not added, as it does not yet
> support SGL for all other algorithms.
> 
> ---
> v2:
>   - Moved GCM and CHACHAPOLY context from session to qp_data.
>   - Removed redundant if condition checks.
>   - Added setting job SGL state to IMB_SGL_INIT for the first job.
>   - Squashed third patch into other patches.
> 
> Ciara Power (2):
>   crypto/ipsec_mb: add GCM SGL support to aesni-mb
>   crypto/ipsec_mb: add chachapoly SGL support to aesni-mb
> 
>  drivers/crypto/ipsec_mb/pmd_aesni_mb.c      | 162 +++++++++++++++++++-
>  drivers/crypto/ipsec_mb/pmd_aesni_mb_priv.h |   4 +
>  2 files changed, 161 insertions(+), 5 deletions(-)
> 
> --
> 2.25.1

Series-acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
  
Akhil Goyal May 26, 2022, 4:13 p.m. UTC | #2
> This patchset adds SGL support for GCM and CHACHA20-POLY1305 algorithms,
> using the IPSec-MB JOB API.
> 
> Supported SGL types:
>  - INPLACE SGL
>  - OOP SGL IN, LB OUT
>  - OOP SGL IN, SGL OUT
> 
> The SGL Feature Flags for AESNI_MB PMD are not added,
> as it does not yet support SGL for all other algorithms.
> 
Applied to dpdk-next-crypto

Thanks.