From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D95F3A0544; Mon, 10 Oct 2022 14:31:16 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 89A3C4021E; Mon, 10 Oct 2022 14:31:16 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 8BB8840146 for ; Mon, 10 Oct 2022 14:31:14 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 29ABLWXi008912; Mon, 10 Oct 2022 05:31:13 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=eIfMOQ91pioiwZsJkBri51MzBaeGAUIrlsG9H/6XICQ=; b=XNpO76YTBFiBjh3KkZGltZN1+prO1yDI4gzx1qCH2ha5PIc867PLO7OLQVg2TmwwYJSx xvgbrqoyssbkXyPu1381WXlQOhAN2jyyBhyV97FGWczFvscpv/L237Ad3bN0020gJyV8 nndnPUyGqqMoq3ondagzp8FydpNqFCjJXWoQRTDHEMBevHBcHnNwWnUqRWJKNsW68xfM 18yAVGfPPOBtKa5iqubuYr74ylKSnLFVbsG8I3XXFocLvMPz5cXwDzbnYjWGuliweEaI Z1fL6BmageBDqOapOqT5GsAktp0tPupui9QIqoQxD1T/eILxW0PjmHrwAgMsuTkiUzjl Cw== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3k40g4ts0v-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 10 Oct 2022 05:31:13 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Mon, 10 Oct 2022 05:31:11 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Mon, 10 Oct 2022 05:31:11 -0700 Received: from localhost.localdomain (unknown [10.28.34.39]) by maili.marvell.com (Postfix) with ESMTP id 1BE9C3F708E; Mon, 10 Oct 2022 05:31:08 -0700 (PDT) From: Volodymyr Fialko To: CC: , , , , Volodymyr Fialko Subject: [PATCH v2 0/6] examples/ipsec-secgw: add lookaside event mode Date: Mon, 10 Oct 2022 14:30:56 +0200 Message-ID: <20221010123102.3962719-1-vfialko@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220804103626.102688-1-vfialko@marvell.com> References: <20220804103626.102688-1-vfialko@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: p1aOw85qqD6tJKO29mrhWv4_MymYq749 X-Proofpoint-GUID: p1aOw85qqD6tJKO29mrhWv4_MymYq749 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.895,Hydra:6.0.528,FMLib:17.11.122.1 definitions=2022-10-10_06,2022-10-10_02,2022-06-22_01 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add support for lookaside event mode for ipsec-secgw example application. * Changes since v1 - Resolve issue with ipv6 free packet in case of error - Rebase on top of dpdk-next-crypto - Update release note Volodymyr Fialko (6): examples/ipsec-secgw: add event crypto adapter init examples/ipsec-secgw: add queue for event crypto adapter examples/ipsec-secgw: add lookaside event mode examples/ipsec-secgw: add stats for event mode examples/ipsec-secgw: add event vector support for lookaside examples/ipsec-secgw: reduce number of QP for event lookaside doc/guides/rel_notes/release_22_11.rst | 5 + doc/guides/sample_app_ug/ipsec_secgw.rst | 7 +- examples/ipsec-secgw/event_helper.c | 267 +++++++++++-- examples/ipsec-secgw/event_helper.h | 4 + examples/ipsec-secgw/ipsec-secgw.c | 88 +++-- examples/ipsec-secgw/ipsec-secgw.h | 1 + examples/ipsec-secgw/ipsec.c | 35 +- examples/ipsec-secgw/ipsec.h | 8 +- examples/ipsec-secgw/ipsec_worker.c | 476 ++++++++++++++++++++--- examples/ipsec-secgw/sa.c | 37 +- 10 files changed, 800 insertions(+), 128 deletions(-) -- 2.25.1