From patchwork Mon Jul 5 13:13:35 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tejasree Kondoj X-Patchwork-Id: 95299 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D3951A0A0F; Mon, 5 Jul 2021 14:18:39 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9CF1440040; Mon, 5 Jul 2021 14:18:39 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 228734003C for ; Mon, 5 Jul 2021 14:18:38 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 165CFoXh017173; Mon, 5 Jul 2021 05:18:37 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=+o7YuxrlvFdRGWVEh7e3uMFx9G3ZvSganM4muywj+y4=; b=gZex79jDjeHt1uP12hQwEywJqUMK5Q4ivjQojxebNe7mQrpDK4uBdl6T7igckkaJyqgq GcwGJx2PJsdlIqFonOq0/HrxvFSPD+oF6nG1g77Ag4UOm372BDY+HvFL14QouH4Omko5 smLiSf10fq2mjDx0Qy5yJerUaW26KK1kjvGx+vhDOdxbFX4V0tOD2aGSPstGtKLOMOa0 KutW5d9Nii9fR3UDYxsK14/WNHgU3sF2lf5H/Ow7VyzPRJXfJbkfm0O6iSITSecLBcOT jgXWJsCAEefPYItHs9s51bshc38q7LjtYmpHAfjQ9xU85Hd2p4e+4AAxlUPNl4GV64q3 xg== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com with ESMTP id 39kt2m9jj7-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 05 Jul 2021 05:18:37 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Mon, 5 Jul 2021 05:18:34 -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, 5 Jul 2021 05:18:34 -0700 Received: from hyd1554T5810.caveonetworks.com.com (unknown [10.29.57.11]) by maili.marvell.com (Postfix) with ESMTP id 96D8F5B6921; Mon, 5 Jul 2021 05:18:31 -0700 (PDT) From: Tejasree Kondoj To: Akhil Goyal , Radu Nicolau , Konstantin Ananyev , Hemant Agrawal , Fan Zhang CC: Tejasree Kondoj , Anoob Joseph , Jerin Jacob , Date: Mon, 5 Jul 2021 18:43:35 +0530 Message-ID: <20210705131335.21070-1-ktejasree@marvell.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: EdUhJU7v6aMEctcdTZ5NSdP6Jik0zaGy X-Proofpoint-GUID: EdUhJU7v6aMEctcdTZ5NSdP6Jik0zaGy X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391, 18.0.790 definitions=2021-07-05_07:2021-07-02, 2021-07-05 signatures=0 Subject: [dpdk-dev] [PATCH] doc: announce IPsec SA config option struct changes 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 Sender: "dev" Proposing following new field for IPsec tunnel header verification in the structure ``rte_security_ipsec_sa_options``. enum rte_security_ipsec_tunnel_verify_mode tunnel_hdr_verify; It is used to indicate whether outer header verification need to be done as part of inbound IPsec processing. https://mails.dpdk.org/archives/dev/2021-July/213484.html Signed-off-by: Tejasree Kondoj --- doc/guides/rel_notes/deprecation.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 9584d6bfd7..331b9d424a 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -141,6 +141,9 @@ Deprecation Notices in "rte_sched.h". These changes are aligned to improvements suggested in the RFC https://mails.dpdk.org/archives/dev/2018-November/120035.html. +* security: The IPsec SA config options structure ``struct rte_security_ipsec_sa_options`` + will be updated with a new field to support IPsec tunnel header verification. + * metrics: The function ``rte_metrics_init`` will have a non-void return in order to notify errors instead of calling ``rte_exit``.