From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id C05135589 for ; Tue, 15 Mar 2016 08:48:27 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP; 15 Mar 2016 00:48:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,338,1455004800"; d="scan'208";a="764338429" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by orsmga003.jf.intel.com with ESMTP; 15 Mar 2016 00:48:26 -0700 Received: from fmsmsx116.amr.corp.intel.com (10.18.116.20) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 15 Mar 2016 00:48:26 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.110.15) by fmsmsx116.amr.corp.intel.com (10.18.116.20) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 15 Mar 2016 00:48:26 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.24]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.132]) with mapi id 14.03.0248.002; Tue, 15 Mar 2016 15:48:24 +0800 From: "Cao, Min" To: "Doherty, Declan" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v2 0/2] cryptodev API changes Thread-Index: AQHRawVIvOwetY6vpEOn5UcR4kuIS59aPLFA Date: Tue, 15 Mar 2016 07:48:23 +0000 Message-ID: References: <1454159235-5175-1-git-send-email-declan.doherty@intel.com> <1455879670-31446-1-git-send-email-declan.doherty@intel.com> In-Reply-To: <1455879670-31446-1-git-send-email-declan.doherty@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 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: Tue, 15 Mar 2016 07:48:28 -0000 Tested-by: Min Cao - Tested Commit: e45ef10c34540c3f543689d833db8bb7296d9e85 - OS: Fedora20 3.11.10-301.fc20.x86_64 - GCC: gcc (GCC) 4.8.3 - CPU: Intel(R) Xeon(R) CPU E5-2658 v3 @ 2.20GHz - NIC: Niantic - Default x86_64-native-linuxapp-gcc configuration - Prerequisites: - Total 24 cases, 24 passed, 0 failed - test case 1: QAT Unit test=20 Total 13 cases, 13 passed, 0 failed - test case 2: AES_NI Unit test=20 Total 10 cases, 10 passed, 0 failed - test case 3: l2fwd-crypto=20 Total 1 cases, 1 passed, 0 failed -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Declan Doherty Sent: Friday, February 19, 2016 7:01 PM To: dev@dpdk.org Subject: [dpdk-dev] [PATCH v2 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. This patch set is dependent on the following bug fixes patches: aesni_mb: strict-aliasing rule compilation fix (http://dpdk.org/ml/archives/dev/2016-February/033193.html) qat:fix build on 32-bit systems (http://dpdk.org/ml/archives/dev/2016-February/033442.html) aesni_mb: fix wrong return value (http://dpdk.org/ml/archives/dev/2016-February/033193.html) Various fixes for L2fwd-crypto 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 | 4 - app/test/test_cryptodev.c | 890 +++++++++++------= ---- app/test/test_cryptodev.h | 9 +- app/test/test_cryptodev_perf.c | 270 ++++--- config/common_bsdapp | 7 - config/common_linuxapp | 11 +- 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 | 154 ++-- drivers/crypto/qat/qat_crypto.h | 14 +- drivers/crypto/qat/rte_qat_cryptodev.c | 8 +- examples/l2fwd-crypto/main.c | 281 ++++--- lib/Makefile | 1 - lib/librte_cryptodev/Makefile | 1 + lib/librte_cryptodev/rte_crypto.h | 802 +++++++----------= -- lib/librte_cryptodev/rte_crypto_sym.h | 642 +++++++++++++++ lib/librte_cryptodev/rte_cryptodev.c | 113 ++- lib/librte_cryptodev/rte_cryptodev.h | 183 ++--- lib/librte_cryptodev/rte_cryptodev_pmd.h | 32 +- lib/librte_cryptodev/rte_cryptodev_version.map | 1 + 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 | 307 ------- .../rte_mbuf_offload_version.map | 7 - 27 files changed, 2114 insertions(+), 2005 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.5.0