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 E3AA51C52 for ; Thu, 10 Mar 2016 17:54:04 +0100 (CET) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga102.fm.intel.com with ESMTP; 10 Mar 2016 08:54:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,316,1455004800"; d="scan'208";a="63655606" Received: from irsmsx105.ger.corp.intel.com ([163.33.3.28]) by fmsmga004.fm.intel.com with ESMTP; 10 Mar 2016 08:54:03 -0800 Received: from irsmsx107.ger.corp.intel.com ([169.254.10.137]) by irsmsx105.ger.corp.intel.com ([169.254.7.35]) with mapi id 14.03.0248.002; Thu, 10 Mar 2016 16:54:02 +0000 From: "Jain, Deepak K" To: "De Lara Guarch, Pablo" , "dev@dpdk.org" Thread-Topic: [PATCH v4] pmd/snow3g: add new SNOW 3G SW PMD Thread-Index: AQHReuo61DvyiNql3US0dif/OcS5t59S5F2w Date: Thu, 10 Mar 2016 16:54:01 +0000 Deferred-Delivery: Thu, 10 Mar 2016 16:53:46 +0000 Message-ID: References: <1457380086-30391-1-git-send-email-pablo.de.lara.guarch@intel.com> <1457627592-29144-1-git-send-email-pablo.de.lara.guarch@intel.com> In-Reply-To: <1457627592-29144-1-git-send-email-pablo.de.lara.guarch@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: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYTEzNGQxYzktZmVjZS00MzM4LWJkMGItZjZhMTBjN2U0NTEwIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IlVMYVlkXC94QWNNbUxsKzZhT2tYNVFzYzdCRGNaQjFHR0FwcndoTVVjM21VPSJ9 x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4] pmd/snow3g: add new SNOW 3G SW PMD 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: Thu, 10 Mar 2016 16:54:05 -0000 -----Original Message----- From: De Lara Guarch, Pablo=20 Sent: Thursday, March 10, 2016 4:33 PM To: dev@dpdk.org Cc: Doherty, Declan ; Jain, Deepak K ; De Lara Guarch, Pablo Subject: [PATCH v4] pmd/snow3g: add new SNOW 3G SW PMD Added new SW PMD which makes use of the libsso SW library, which provides w= ireless algorithms SNOW 3G UEA2 and UIA2 in software. This PMD supports cipher-only, hash-only and chained operations ("cipher th= en hash" and "hash then cipher") of the following algorithms: - RTE_CRYPTO_SYM_CIPHER_SNOW3G_UEA2 - RTE_CRYPTO_SYM_AUTH_SNOW3G_UIA2 The SNOW 3G hash and cipher algorithms, which are enabled by this crypto PM= D are implemented by Intel's libsso software library. For library download = and build instructions, see the documentation included (doc/guides/cryptode= vs/snow3g.rst) The patch also contains the related unit tests function to test the PMD sup= ported operations. Signed-off-by: Pablo de Lara --- This patch depends on "Snow3G support for Intel Quick Assist Devices" patch= set (http://dpdk.org/ml/archives/dev/2016-March/03548.html). Changes in v4: - Added missing fix casting that was breaking C++ compilation. - Fixed documentation - Rebased against latest DPDK code Changes in v3: - Corrected patch dependency Changes in v2: - Rebased against crypto API changes - Removed static config options and allow user to provide them as virtual device parameters. - Added unit tests - Changed DPDK version references from 2.3 to 16.04 - Fixed crypto operation status handling - Fixed copyright dates - Fixed enqueue error stats --=20 2.5.0 Acked-by: Deepak Kumar JAIN