From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 61728A0350; Wed, 24 Jun 2020 16:24:25 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 15D981D98D; Wed, 24 Jun 2020 16:24:17 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 7FE2658C4 for ; Wed, 24 Jun 2020 16:24:14 +0200 (CEST) IronPort-SDR: xnJBAsus5tNd1gOiG068YH17cJHmY0hOhXCaT+QjzWgkkAboC7DT5Zq453I/zYwpL/+NVK8kel jDXGx50vvDgg== X-IronPort-AV: E=McAfee;i="6000,8403,9662"; a="209613283" X-IronPort-AV: E=Sophos;i="5.75,275,1589266800"; d="scan'208";a="209613283" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Jun 2020 07:24:13 -0700 IronPort-SDR: TP8o8DIAHk4NvgAigL2p6oN2dChKg+pPmFBzQ7NL3UEsze0au/+5O+doxBDETa8iFWUS1TiLOK WRdhrXkcxd1g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,275,1589266800"; d="scan'208";a="311656408" Received: from akusztax-mobl.ger.corp.intel.com ([10.104.121.106]) by fmsmga002.fm.intel.com with ESMTP; 24 Jun 2020 07:24:12 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: akhil.goyal@nxp.com, fiona.trahe@intel.com, Arek Kusztal Date: Wed, 24 Jun 2020 16:23:44 +0200 Message-Id: <20200624142344.3152-2-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.19.1.windows.1 In-Reply-To: <20200624142344.3152-1-arkadiuszx.kusztal@intel.com> References: <20200624142344.3152-1-arkadiuszx.kusztal@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2] examples: add multi process crypto application 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Due to increasing interest in multi process support for crypto PMDs new sample app can be added so in overview we can say that: The Multi-process Crypto application is a simple application that allows to run crypto related operations in a multiple process environment. It builds on the EAL primary/secondary process infrastructure. v2: - fixed error when first process dequeueing - fixed multiple checkpach issues Arek Kusztal (1): examples: add multi process crypto application doc/guides/sample_app_ug/index.rst | 1 + doc/guides/sample_app_ug/mp_crypto.rst | 153 +++++ examples/mp_crypto/Makefile | 58 ++ examples/mp_crypto/main.c | 1109 ++++++++++++++++++++++++++++++++ examples/mp_crypto/meson.build | 18 + examples/mp_crypto/mp_crypto.c | 139 ++++ examples/mp_crypto/mp_crypto.h | 224 +++++++ examples/mp_crypto/mp_crypto_ipc.c | 32 + examples/mp_crypto/mp_crypto_parser.c | 511 +++++++++++++++ examples/mp_crypto/mp_crypto_parser.h | 149 +++++ examples/mp_crypto/mp_crypto_vectors.c | 175 +++++ examples/mp_crypto/mp_crypto_vectors.h | 66 ++ 12 files changed, 2635 insertions(+) create mode 100644 doc/guides/sample_app_ug/mp_crypto.rst create mode 100644 examples/mp_crypto/Makefile create mode 100644 examples/mp_crypto/main.c create mode 100644 examples/mp_crypto/meson.build create mode 100644 examples/mp_crypto/mp_crypto.c create mode 100644 examples/mp_crypto/mp_crypto.h create mode 100644 examples/mp_crypto/mp_crypto_ipc.c create mode 100644 examples/mp_crypto/mp_crypto_parser.c create mode 100644 examples/mp_crypto/mp_crypto_parser.h create mode 100644 examples/mp_crypto/mp_crypto_vectors.c create mode 100644 examples/mp_crypto/mp_crypto_vectors.h -- 2.1.0