DPDK patches and discussions
 help / color / mirror / Atom feed
From: Pablo de Lara <pablo.de.lara.guarch@intel.com>
To: thomas@monjalon.net
Cc: dev@dpdk.org
Subject: [dpdk-dev] [pull-request] next-crypto 17.11 rc2
Date: Wed, 25 Oct 2017 17:18:10 +0100	[thread overview]
Message-ID: <20171025161810.155055-1-pablo.de.lara.guarch@intel.com> (raw)

The following changes since commit 1e02d735c1446705592ca8d89b4b500f9492a8ef:

  examples/kni: check PCI info not NULL before reading (2017-10-25 00:03:20 +0200)

are available in the git repository at:

  http://dpdk.org/git/next/dpdk-next-crypto 

for you to fetch changes up to 1f076245bc41cdeb4297184c3a1814fc9e149318:

  cryptodev: extend info get function documentation (2017-10-25 17:11:27 +0100)

----------------------------------------------------------------
Alok Makhariya (6):
      crypto/dpaa_sec: remove ICV memset on decryption side
      crypto/dpaa2_sec: remove ICV memset on decryption side
      crypto/dpaa_sec: add check for segmented buffer
      crypto/dpaa2_sec: add check for segmented buffer
      crypto/dpaa2_sec: support out of place buffers
      crypto/dpaa_sec: support out of place buffers

Aviad Yehezkel (4):
      examples/ipsec-secgw: fix crypto device mapping
      examples/ipsec-secgw: fix session creation
      examples/ipsec-secgw: fix AAD length setting
      examples/ipsec-secgw: IV should be be64

Billy O'Mahony (1):
      cryptodev: extend info get function documentation

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

Ian Stokes (1):
      cryptodev: fix build with Ofast

Jan Blunck (2):
      cryptodev: remove obsolete include
      cryptodev: move user callback initialization

Pablo de Lara (2):
      examples/l2fwd-crypto: fix physical address setting
      crypto/qat: fix HMAC supported digest sizes

Radu Nicolau (3):
      maintainers: update ipsec app
      examples/ipsec_secgw: switch to new offload API
      examples/ipsec_secgw: support jumbo frames

Tomasz Duszynski (6):
      examples/ipsec-secgw: fix IP version check
      crypto/mrvl: fix driver name in debug log
      crypto/mrvl: fix enabling debug logs
      crypto/mrvl: print message if DMA mem is initialized
      crypto/mrvl: update copyright holders
      examples/ipsec-secgw: fix IPv6 payload length value

Zhiyong Yang (1):
      examples/l2fwd-crypto: fix port id type

 MAINTAINERS                                    |   1 +
 doc/guides/cryptodevs/mrvl.rst                 |   5 +-
 doc/guides/rel_notes/deprecation.rst           |   5 -
 doc/guides/rel_notes/release_17_11.rst         |  23 ++-
 doc/guides/sample_app_ug/ipsec_secgw.rst       |   6 +-
 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    |  64 +++++---
 drivers/crypto/dpaa_sec/dpaa_sec.c             |  70 ++++----
 drivers/crypto/kasumi/rte_kasumi_pmd.c         |  49 ++----
 drivers/crypto/mrvl/Makefile                   |   6 +-
 drivers/crypto/mrvl/rte_mrvl_compat.h          |   6 +-
 drivers/crypto/mrvl/rte_mrvl_pmd.c             |  77 ++++-----
 drivers/crypto/mrvl/rte_mrvl_pmd_ops.c         |   6 +-
 drivers/crypto/mrvl/rte_mrvl_pmd_private.h     |  14 +-
 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/qat_crypto_capabilities.h   |  24 +--
 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 ++---
 examples/ipsec-secgw/esp.c                     |  16 +-
 examples/ipsec-secgw/ipip.h                    |   3 +-
 examples/ipsec-secgw/ipsec-secgw.c             |  52 ++++--
 examples/ipsec-secgw/ipsec.c                   |   8 +-
 examples/ipsec-secgw/ipsec.h                   |   1 +
 examples/ipsec-secgw/sa.c                      |   3 +-
 examples/l2fwd-crypto/main.c                   |  44 ++---
 lib/librte_cryptodev/Makefile                  |   4 +-
 lib/librte_cryptodev/rte_crypto.h              |   1 +
 lib/librte_cryptodev/rte_cryptodev.c           |   3 +
 lib/librte_cryptodev/rte_cryptodev.h           |  14 +-
 lib/librte_cryptodev/rte_cryptodev_pci.h       |  92 -----------
 lib/librte_cryptodev/rte_cryptodev_pmd.c       | 212 ++++++++++---------------
 lib/librte_cryptodev/rte_cryptodev_pmd.h       |  86 ++++++++++
 lib/librte_cryptodev/rte_cryptodev_vdev.h      | 100 ------------
 lib/librte_cryptodev/rte_cryptodev_version.map |   7 +-
 test/test/test_cryptodev.c                     |  12 ++
 test/test/test_cryptodev_aes_test_vectors.h    |  16 +-
 test/test/test_cryptodev_des_test_vectors.h    |   8 +-
 44 files changed, 681 insertions(+), 829 deletions(-)
 delete mode 100644 lib/librte_cryptodev/rte_cryptodev_pci.h
 delete mode 100644 lib/librte_cryptodev/rte_cryptodev_vdev.h

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

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-25 16:18 Pablo de Lara [this message]
2017-10-26  0:18 ` Thomas Monjalon

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=20171025161810.155055-1-pablo.de.lara.guarch@intel.com \
    --to=pablo.de.lara.guarch@intel.com \
    --cc=dev@dpdk.org \
    --cc=thomas@monjalon.net \
    /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).