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 3F91FA00BE; Fri, 12 Jun 2020 20:06:31 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 30A081BF9E; Fri, 12 Jun 2020 20:06:30 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 220601BF91 for ; Fri, 12 Jun 2020 20:06:27 +0200 (CEST) IronPort-SDR: 3BcZGw6cYVO2D9QbtvUZG8q0QxWRLuH60KKiXm36fZRtTl8Uv8GGLfV2LfIIsM3JwBE64JSx0v xCC21fuxpDkA== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Jun 2020 11:06:26 -0700 IronPort-SDR: IjD9uRXa1VI7d8CAsLGp2lPu8wATShcuWvvWK2ZpCAV7WRf0hS+cLWTzDlPVWSovyLoSjw6OfV px3guHZEWt9g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,504,1583222400"; d="scan'208";a="289944097" Received: from akusztax-mobl.ger.corp.intel.com ([10.104.125.52]) by orsmga002.jf.intel.com with ESMTP; 12 Jun 2020 11:06:24 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: akhil.goyal@nxp.com, fiona.trahe@intel.com, Arek Kusztal Date: Fri, 12 Jun 2020 20:03:50 +0200 Message-Id: <20200612180351.16844-1-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.19.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] 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. 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 | 151 +++++ examples/mp_crypto/Makefile | 58 ++ examples/mp_crypto/main.c | 986 +++++++++++++++++++++++++++++++++ examples/mp_crypto/meson.build | 18 + examples/mp_crypto/mp_crypto.c | 128 +++++ examples/mp_crypto/mp_crypto.h | 220 ++++++++ examples/mp_crypto/mp_crypto_ipc.c | 29 + examples/mp_crypto/mp_crypto_parser.c | 505 +++++++++++++++++ examples/mp_crypto/mp_crypto_parser.h | 149 +++++ examples/mp_crypto/mp_crypto_vectors.c | 171 ++++++ examples/mp_crypto/mp_crypto_vectors.h | 66 +++ 12 files changed, 2482 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