From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 5CCB72946 for ; Mon, 7 Mar 2016 14:53:49 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP; 07 Mar 2016 05:53:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,551,1449561600"; d="scan'208";a="759538627" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by orsmga003.jf.intel.com with ESMTP; 07 Mar 2016 05:53:47 -0800 Received: from irsmsx107.ger.corp.intel.com ([169.254.10.137]) by IRSMSX101.ger.corp.intel.com ([169.254.1.157]) with mapi id 14.03.0248.002; Mon, 7 Mar 2016 13:53:47 +0000 From: "Jain, Deepak K" To: "Trahe, Fiona" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v7 0/2] cryptodev API changes Thread-Index: AQHReGjWe0m30A37rUmYyey4sNquPJ9N/8JQ Date: Mon, 7 Mar 2016 13:53:46 +0000 Deferred-Delivery: Mon, 7 Mar 2016 13:53:45 +0000 Message-ID: References: <1457116189-10226-1-git-send-email-fiona.trahe@intel.com> <1457351422-7617-1-git-send-email-fiona.trahe@intel.com> In-Reply-To: <1457351422-7617-1-git-send-email-fiona.trahe@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZmIyY2FkYjgtNDkyZS00ZGZiLTgxNGEtMGQ3ZmQ5NjBmYmQzIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6ImRjNmZPaWxhZWJEZGYxRitUaUVkQTQwZU9cL1hwRm5tYzdwVENZUkNlRW13PSJ9 x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v7 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, 07 Mar 2016 13:53:49 -0000 -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Fiona Trahe Sent: Monday, March 7, 2016 11:50 AM To: dev@dpdk.org Subject: [dpdk-dev] [PATCH v7 0/2] cryptodev API changes This patch set separates the symmetric crypto operations from generic opera= tions and then modifies the cryptodev burst API to accept bursts of rte_cry= pto_op rather than rte_mbufs. v7: - remove trailing spaces introduced in v6 - rebase against recent config file changes v6: - restore EXPERIMENTAL label to cryptodev. Will handle removal in separate = thread. (email subject was incorrect in v5, so v5 hasn't arrived in patchwork, ther= efore v6 is in-reply-to v4 message id) V5:=20 - updates .map file - removes EXPERIMENTAL label from rte_cryptodev.h V4: - Fixes for issues introduced in __rte_crypto_op_raw_bulk_alloc in V3 patch= eset. - Typo fix in cached attribute on rte_crypto_op structure. V3: - Addresses V2 comments - Rebased for head Declan Doherty (1): cryptodev: change burst API to be crypto op oriented Fiona Trahe (2): cryptodev: API tidy and changes to support future extensions cryptodev: change burst API to be crypto op oriented MAINTAINERS | 4 - app/test/test_cryptodev.c | 894 +++++++++++------= ---- app/test/test_cryptodev.h | 9 +- app/test/test_cryptodev_perf.c | 270 ++++--- config/common_base | 7 - 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 | 819 +++++++----------= -- lib/librte_cryptodev/rte_crypto_sym.h | 642 +++++++++++++++ lib/librte_cryptodev/rte_cryptodev.c | 115 ++- lib/librte_cryptodev/rte_cryptodev.h | 189 ++--- lib/librte_cryptodev/rte_cryptodev_pmd.h | 32 +- lib/librte_cryptodev/rte_cryptodev_version.map | 7 +- 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 - 26 files changed, 2145 insertions(+), 2016 deletions(-) create mode 10064= 4 lib/librte_cryptodev/rte_crypto_sym.h delete mode 100644 lib/librte_mbuf_offload/Makefile delete mode 100644 li= b/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 -- 2.1.0 Series-acked-by: Deepak Kumar JAIN