From patchwork Wed Jun 30 11:20:49 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Archana Muniganti X-Patchwork-Id: 95053 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 B01B7A0A0F; Wed, 30 Jun 2021 13:21:02 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 75D8440141; Wed, 30 Jun 2021 13:21:02 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id A452D40040 for ; Wed, 30 Jun 2021 13:21:01 +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 15UBFh43023619; Wed, 30 Jun 2021 04:21:01 -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=sQEi+meXU1O8gz96gZeciRrRI67ELgHOFW7qSUCDEgc=; b=j5dMqH4AKH18zt5f/99XLWX/ETSar4m0KRkkPDqo1WExM/J0u8c0m9k3NK1mi2YUQJzF OH6jqkw9sybTHvmNduSWsVQLTUj8aFwZs/y9h0xz2tcnsJ4CNWTkpQy8eN3uPRa2gqiH +N+xiSghAh5xhXDZSQKDVZIgEUuZS+tOFvZyUzOGP5RQ6NMeFGCyIVzFDDcYR5jYBGI/ J7hwjIx+uO6a69XSJzPdA++ZAbVQI0r+vNVd7SFb268WwtOrGIV5yzqjLW6KifCF/NjR 2GjA1ZCeEPUkF1tl45vcgRBbN5GTArC/sYDJZtn1czJ9lheesXnQbZPSJhj1oKtXMFoZ +g== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com with ESMTP id 39g93du6e0-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 30 Jun 2021 04:21:00 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Wed, 30 Jun 2021 04:20:58 -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.18 via Frontend Transport; Wed, 30 Jun 2021 04:20:58 -0700 Received: from hyd1409.caveonetworks.com.com (unknown [10.29.45.15]) by maili.marvell.com (Postfix) with ESMTP id 23EBA3F7094; Wed, 30 Jun 2021 04:20:55 -0700 (PDT) From: Archana Muniganti To: , , , CC: Archana Muniganti , , , Date: Wed, 30 Jun 2021 16:50:49 +0530 Message-ID: <20210630112049.3747-1-marchana@marvell.com> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: -iKvRMIHm7hM48LXyyl3bcViKv6PlZHv X-Proofpoint-GUID: -iKvRMIHm7hM48LXyyl3bcViKv6PlZHv X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391, 18.0.790 definitions=2021-06-30_05:2021-06-29, 2021-06-30 signatures=0 Subject: [dpdk-dev] [PATCH] doc: announce 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 two new fields for IPsec inner checksum configuration in the structure ``rte_security_ipsec_sa_options``. uint32_t ip_csum_enable : 1; uint32_t l4_csum_enable : 1; With these config options, per SA, application can specify if the inner checksum(compute/verify) to be offloaded to the security device. https://mails.dpdk.org/archives/dev/2021-June/212977.html Signed-off-by: Archana Muniganti --- doc/guides/rel_notes/deprecation.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 9584d6bfd7..da65ae68be 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -141,6 +141,10 @@ 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 two new fields to support IPsec inner checksum in case + of protocol offload. + * metrics: The function ``rte_metrics_init`` will have a non-void return in order to notify errors instead of calling ``rte_exit``.