mbox series

[v3,0/3] crypto/aesni_mb: add aes-gcm support

Message ID 20181010110443.82749-1-roy.fan.zhang@intel.com (mailing list archive)
Headers
Series crypto/aesni_mb: add aes-gcm support |

Message

Fan Zhang Oct. 10, 2018, 11:04 a.m. UTC
  This patchset adds the AES-GCM algorithm support to AESNI-MB Cryptodev
PMD and updates the unit test and documentations.

v3:
- updated patch descriptions.

v2:
- rebased on top of latest dpdk-next-crypto.
- removed incorrect __rte_unused macros.

Fan Zhang (3):
  crypto/aesni_mb: add aes-gcm algorithm support
  test/test_cryptodev: add AES-GCM tests to AESNI-MB
  doc: update cryptodev and release note

 doc/guides/cryptodevs/aesni_mb.rst                 |   1 +
 doc/guides/rel_notes/release_18_11.rst             |   4 +
 drivers/crypto/aesni_mb/aesni_mb_ops.h             |  28 +++-
 drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c         | 160 +++++++++++++++------
 drivers/crypto/aesni_mb/rte_aesni_mb_pmd_ops.c     |  30 ++++
 drivers/crypto/aesni_mb/rte_aesni_mb_pmd_private.h |   3 +
 test/test/test_cryptodev.c                         | 114 +++++++++++++++
 7 files changed, 293 insertions(+), 47 deletions(-)
  

Comments

Akhil Goyal Oct. 10, 2018, 11:39 a.m. UTC | #1
On 10/10/2018 4:34 PM, Fan Zhang wrote:
> This patchset adds the AES-GCM algorithm support to AESNI-MB Cryptodev
> PMD and updates the unit test and documentations.
>
> v3:
> - updated patch descriptions.
>
> v2:
> - rebased on top of latest dpdk-next-crypto.
> - removed incorrect __rte_unused macros.
>
> Fan Zhang (3):
>    crypto/aesni_mb: add aes-gcm algorithm support
>    test/test_cryptodev: add AES-GCM tests to AESNI-MB
>    doc: update cryptodev and release note
>
>   doc/guides/cryptodevs/aesni_mb.rst                 |   1 +
>   doc/guides/rel_notes/release_18_11.rst             |   4 +
>   drivers/crypto/aesni_mb/aesni_mb_ops.h             |  28 +++-
>   drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c         | 160 +++++++++++++++------
>   drivers/crypto/aesni_mb/rte_aesni_mb_pmd_ops.c     |  30 ++++
>   drivers/crypto/aesni_mb/rte_aesni_mb_pmd_private.h |   3 +
>   test/test/test_cryptodev.c                         | 114 +++++++++++++++
>   7 files changed, 293 insertions(+), 47 deletions(-)
>
Applied to dpdk-next-crypto

Thanks