From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 019B3532C for ; Mon, 19 Dec 2016 18:27:21 +0100 (CET) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga104.fm.intel.com with ESMTP; 19 Dec 2016 09:27:20 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,374,1477983600"; d="scan'208";a="41562929" Received: from silpixa00381631.ir.intel.com (HELO silpixa00381631.ger.corp.intel.com) ([10.237.222.122]) by orsmga004.jf.intel.com with ESMTP; 19 Dec 2016 09:27:19 -0800 From: Pablo de Lara To: declan.doherty@intel.com Cc: dev@dpdk.org, Pablo de Lara Date: Mon, 19 Dec 2016 17:28:59 +0000 Message-Id: <1482168543-40289-1-git-send-email-pablo.de.lara.guarch@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1481817632-183082-1-git-send-email-pablo.de.lara.guarch@intel.com> References: <1481817632-183082-1-git-send-email-pablo.de.lara.guarch@intel.com> Subject: [dpdk-dev] [PATCH v3 0/4] AESNI MB PMD updates 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: Mon, 19 Dec 2016 17:27:22 -0000 The library used in AESNI MB PMD, Intel Multi Buffer Crypto for IPsec, has been migrated to a new location, in github (see documentation patch for the link). The library has also been updated, so single crypto operations are supported (cipher and authentication only). Therefore, the PMD has been updated to support these operations. This patchset depends on patchset "Add scatter-gather list capability to Intel QuickAssist Technology driver" (http://dpdk.org/ml/archives/dev/2016-November/050947.html) Changes in v3: - Included authentication operation in private session, since digest only has to be trimmed from buffer when digest is verified - Fixed missing crypto session save in crypto operation when it is sessionless - Made operation mode setting more clear (CIPHER_HASH, HASH_CIPHER) Changes in v2: - Fixed hash only tests, including truncated digest length Pablo de Lara (4): crypto/aesni_mb: fix incorrect crypto session doc: update AESNI MB PMD guide crypto/aesni_mb: add single operation functionality doc: add missing supported algos for AESNI MB PMD app/test/test_cryptodev.c | 34 ++++++++ app/test/test_cryptodev_aes_test_vectors.h | 36 +++++--- app/test/test_cryptodev_hash_test_vectors.h | 54 ++++++++---- doc/guides/cryptodevs/aesni_mb.rst | 14 ++-- doc/guides/rel_notes/release_17_02.rst | 8 ++ drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c | 96 ++++++++++++++++------ drivers/crypto/aesni_mb/rte_aesni_mb_pmd_private.h | 9 ++ 7 files changed, 185 insertions(+), 66 deletions(-) -- 2.7.4