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 6C54FA0544; Mon, 10 Oct 2022 18:56:43 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4C77D4021D; Mon, 10 Oct 2022 18:56:43 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id BBFCA40041 for ; Mon, 10 Oct 2022 18:56:41 +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 29AB8gPM008930; Mon, 10 Oct 2022 09:56:41 -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=VklRwYHB+A3m6NR48CiaVGpfBWyxUf1dDUy/uSsdt2o=; b=CQ744XOhKqyUDDtR7S/h+nVOw+3BcDPiFuLbgUC8MODSIhbS8Agiza/hoHHTXhlDoZKw VKVtAW93cvg+rTQehI0rOy1K8mkAz8ey1WfaL0FZ72vIjGYaUbs/LWtAW30LxQuKbR+L 8fw+TkNIF2ZbDmMCIEM8SYDEsNqMwKeeurdihATXjvF0I0lHAjisqBU3ihOsu8Ybu3RA rW6VM+HHWpJSTGxYH1uDkxORJ6x7DrY11cZ0H4gbA4D3A3O+c3wnOEumMBTohq+QqynB OuAm/o0KwbaPPNU8+a/tTgMFSm6wcxuJNbbKxrl3QTtNxMSDwO3o3GLKH1wJhOrU9lyf bw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3k40g4um99-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 10 Oct 2022 09:56:41 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Mon, 10 Oct 2022 09:56:38 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Mon, 10 Oct 2022 09:56:38 -0700 Received: from localhost.localdomain (unknown [10.28.34.39]) by maili.marvell.com (Postfix) with ESMTP id C15D03F709C; Mon, 10 Oct 2022 09:56:36 -0700 (PDT) From: Volodymyr Fialko To: CC: , , , , Volodymyr Fialko Subject: [PATCH v3 0/6] examples/ipsec-secgw: add lookaside event mode Date: Mon, 10 Oct 2022 18:56:23 +0200 Message-ID: <20221010165629.17744-1-vfialko@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20221010123102.3962719-1-vfialko@marvell.com> References: <20221010123102.3962719-1-vfialko@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: 0lB1w8DDO3UAlUVJF7e0J4srlDsSwjnz X-Proofpoint-GUID: 0lB1w8DDO3UAlUVJF7e0J4srlDsSwjnz 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_10,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 * Changes since v2 - Fix compilation with old gcc 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 | 36 +- examples/ipsec-secgw/ipsec.h | 8 +- examples/ipsec-secgw/ipsec_worker.c | 476 ++++++++++++++++++++--- examples/ipsec-secgw/sa.c | 37 +- 10 files changed, 801 insertions(+), 128 deletions(-) -- 2.25.1