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 854E445AF5; Wed, 9 Oct 2024 20:11:42 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 45A74402B7; Wed, 9 Oct 2024 20:11:42 +0200 (CEST) Received: from frasgout.his.huawei.com (frasgout.his.huawei.com [185.176.79.56]) by mails.dpdk.org (Postfix) with ESMTP id E3D9C402A5 for ; Wed, 9 Oct 2024 20:11:40 +0200 (CEST) Received: from mail.maildlp.com (unknown [172.18.186.216]) by frasgout.his.huawei.com (SkyGuard) with ESMTP id 4XP17X04qqz6L6xf; Thu, 10 Oct 2024 02:07:20 +0800 (CST) Received: from frapeml100008.china.huawei.com (unknown [7.182.85.131]) by mail.maildlp.com (Postfix) with ESMTPS id 9EA98140447; Thu, 10 Oct 2024 02:11:39 +0800 (CST) Received: from frapeml500007.china.huawei.com (7.182.85.172) by frapeml100008.china.huawei.com (7.182.85.131) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Wed, 9 Oct 2024 20:11:39 +0200 Received: from frapeml500007.china.huawei.com ([7.182.85.172]) by frapeml500007.china.huawei.com ([7.182.85.172]) with mapi id 15.01.2507.039; Wed, 9 Oct 2024 20:11:39 +0200 From: Konstantin Ananyev To: Aakash Sasidharan , Konstantin Ananyev , Vladimir Medvedkin CC: "gakhil@marvell.com" , "jerinj@marvell.com" , "anoobj@marvell.com" , "vvelumuri@marvell.com" , "dev@dpdk.org" Subject: RE: [PATCH v4 1/2] ipsec: allow stateless IPsec processing Thread-Topic: [PATCH v4 1/2] ipsec: allow stateless IPsec processing Thread-Index: AQHbFieZcZXha8gyxkucnNfNICIKiLJ+wL6g Date: Wed, 9 Oct 2024 18:11:39 +0000 Message-ID: <4d3941636833415592e8b34ada98de1b@huawei.com> References: <20241003134539.105789-1-asasidharan@marvell.com> <20241004063443.179264-1-asasidharan@marvell.com> In-Reply-To: <20241004063443.179264-1-asasidharan@marvell.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.206.138.42] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 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 > Introduce stateless packet preparation API for IPsec > processing. The new API would allow preparation of IPsec > packets without altering the internal state of an IPsec > session. >=20 > For outbound IPsec processing, the change enables user to > provide sequence number to be used for the IPsec operation. >=20 > Signed-off-by: Aakash Sasidharan > --- > doc/guides/prog_guide/ipsec_lib.rst | 6 ++ > doc/guides/rel_notes/release_24_11.rst | 6 ++ > lib/ipsec/esp_outb.c | 101 +++++++++++++++++-------- > lib/ipsec/rte_ipsec.h | 84 ++++++++++++++++++++ > lib/ipsec/sa.c | 4 +- > lib/ipsec/sa.h | 8 ++ > 6 files changed, 176 insertions(+), 33 deletions(-) >=20 > -- Acked-by: Konstantin Ananyev > 2.25.1