From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 6BE5E2C60 for ; Mon, 29 Feb 2016 17:03:25 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP; 29 Feb 2016 08:02:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,521,1449561600"; d="scan'208";a="755294391" Received: from dwdohert-dpdk.ir.intel.com ([163.33.210.69]) by orsmga003.jf.intel.com with ESMTP; 29 Feb 2016 08:02:41 -0800 To: dev@dpdk.org References: <1455879670-31446-1-git-send-email-declan.doherty@intel.com> <1456507817-23781-1-git-send-email-declan.doherty@intel.com> From: Declan Doherty Message-ID: <56D46B03.7000106@intel.com> Date: Mon, 29 Feb 2016 16:00:03 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 MIME-Version: 1.0 In-Reply-To: <1456507817-23781-1-git-send-email-declan.doherty@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v3 0/2] cryptodev API changes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Feb 2016 16:03:25 -0000 On 26/02/16 17:30, Declan Doherty wrote: > This patch set separates the symmetric crypto operations from generic operations > and then modifies the cryptodev burst API to accept bursts of rte_crypto_op > rather than rte_mbufs. > > V3: > - Addresses V2 comments > - Rebased for head > > Declan Doherty (1): > cryptodev: change burst API to be crypto op oriented > > Fiona Trahe (1): > cryptodev: API tidy and changes to support future extensions > > MAINTAINERS | 6 +- > app/test/test_cryptodev.c | 894 +++++++++++---------- > app/test/test_cryptodev.h | 9 +- > app/test/test_cryptodev_perf.c | 270 ++++--- > config/common_bsdapp | 8 - > config/common_linuxapp | 8 - > doc/api/doxy-api-index.md | 1 - > drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c | 199 ++--- > drivers/crypto/aesni_mb/rte_aesni_mb_pmd_ops.c | 18 +- > drivers/crypto/aesni_mb/rte_aesni_mb_pmd_private.h | 6 +- > drivers/crypto/qat/qat_crypto.c | 150 ++-- > drivers/crypto/qat/qat_crypto.h | 14 +- > drivers/crypto/qat/rte_qat_cryptodev.c | 8 +- > examples/l2fwd-crypto/main.c | 300 ++++--- > lib/Makefile | 1 - > lib/librte_cryptodev/Makefile | 1 + > lib/librte_cryptodev/rte_crypto.h | 822 ++++++++----------- > lib/librte_cryptodev/rte_crypto_sym.h | 642 +++++++++++++++ > lib/librte_cryptodev/rte_cryptodev.c | 115 ++- > lib/librte_cryptodev/rte_cryptodev.h | 185 ++--- > lib/librte_cryptodev/rte_cryptodev_pmd.h | 32 +- > lib/librte_cryptodev/rte_cryptodev_version.map | 3 +- > lib/librte_mbuf/rte_mbuf.h | 6 - > lib/librte_mbuf_offload/Makefile | 52 -- > lib/librte_mbuf_offload/rte_mbuf_offload.c | 100 --- > lib/librte_mbuf_offload/rte_mbuf_offload.h | 310 ------- > .../rte_mbuf_offload_version.map | 7 - > 27 files changed, 2146 insertions(+), 2021 deletions(-) > create mode 100644 lib/librte_cryptodev/rte_crypto_sym.h > delete mode 100644 lib/librte_mbuf_offload/Makefile > delete mode 100644 lib/librte_mbuf_offload/rte_mbuf_offload.c > delete mode 100644 lib/librte_mbuf_offload/rte_mbuf_offload.h > delete mode 100644 lib/librte_mbuf_offload/rte_mbuf_offload_version.map > self NAK. There is an issue with mis-merged code in __rte_crypto_op_raw_bulk_alloc function in rte_crypto.h