From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id BAB191BA0F for ; Wed, 25 Oct 2017 18:07:13 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Oct 2017 09:07:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.43,432,1503385200"; d="scan'208";a="327611424" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by fmsmga004.fm.intel.com with ESMTP; 25 Oct 2017 09:06:59 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.167]) by irsmsx110.ger.corp.intel.com ([163.33.3.25]) with mapi id 14.03.0319.002; Wed, 25 Oct 2017 17:06:58 +0100 From: "De Lara Guarch, Pablo" To: "Doherty, Declan" , "dev@dpdk.org" CC: "Doherty, Declan" Thread-Topic: [dpdk-dev] [PATCH v2 0/3] Break cryptodev dependency on bus infrastructure Thread-Index: AQHTTYmf8MYDmLf4/kaKeY6WsrCmIqL0u1tA Date: Wed, 25 Oct 2017 16:06:58 +0000 Message-ID: References: <20171020212113.4543-1-declan.doherty@intel.com> <20171025120036.22458-1-declan.doherty@intel.com> In-Reply-To: <20171025120036.22458-1-declan.doherty@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiOGQ2MDcyOTAtNWJlMS00YjI3LTg2YTktOTBlNjk1ZjMwYzMzIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6IldkMGdkaE9GMFlzak1CRER6YmtlRGgydWMrN2ZcL2t0bFdiWDllWHJZUEE4PSJ9 x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 0/3] Break cryptodev dependency on bus infrastructure X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Oct 2017 16:07:14 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Declan Doherty > Sent: Wednesday, October 25, 2017 1:01 PM > To: dev@dpdk.org > Cc: Doherty, Declan > Subject: [dpdk-dev] [PATCH v2 0/3] Break cryptodev dependency on bus > infrastructure >=20 > This patch set breaks the dependency of the cryptodev library on both the > virtual and PCI device infrastructure. >=20 > It introduces new bus independent crypto PMD driver assist functions for > parsing initialisation parameters, and creation/destruction of device > instances. >=20 > It deprecates all function calls to the bus dependent functions and updat= es > all crypto PMDs to use the newly introduced device independent functions. >=20 > V2: > - Add release notes updates for new APIs and API removals > - Addresses comments on string and unsigned integer parsing functions > - logging and doxygen comments tidy up >=20 > 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 >=20 > doc/guides/rel_notes/deprecation.rst | 5 - > doc/guides/rel_notes/release_17_11.rst | 20 +++ > 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 | 11 +- > drivers/crypto/dpaa_sec/dpaa_sec.c | 14 +- > drivers/crypto/kasumi/rte_kasumi_pmd.c | 49 ++---- > drivers/crypto/mrvl/rte_mrvl_pmd.c | 56 +++---- > 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/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 ++--- > lib/librte_cryptodev/Makefile | 2 - > lib/librte_cryptodev/rte_cryptodev.h | 8 +- > lib/librte_cryptodev/rte_cryptodev_pci.h | 92 ----------- > lib/librte_cryptodev/rte_cryptodev_pmd.c | 213 ++++++++++---------= ---- > -- > lib/librte_cryptodev/rte_cryptodev_pmd.h | 86 ++++++++++ > lib/librte_cryptodev/rte_cryptodev_vdev.h | 100 ------------ > lib/librte_cryptodev/rte_cryptodev_version.map | 7 +- > 24 files changed, 424 insertions(+), 711 deletions(-) delete mode 10064= 4 > lib/librte_cryptodev/rte_cryptodev_pci.h > delete mode 100644 lib/librte_cryptodev/rte_cryptodev_vdev.h >=20 > -- > 2.9.4 Applied to dpdk-next-crypto. Thanks, Pablo