From patchwork Tue Jul 27 17:36:37 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nithin Dabilpuram X-Patchwork-Id: 96341 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 B0544A0C55; Tue, 27 Jul 2021 20:02:56 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 40762410F2; Tue, 27 Jul 2021 20:02:56 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id E02E7410F0 for ; Tue, 27 Jul 2021 20:02:53 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 16RHnZ5x024998; Tue, 27 Jul 2021 11:02:53 -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-type; s=pfpt0220; bh=mMaDYM7vC/I4K4oW8i6gPdbmsitX7EawnoL11UcNvzk=; b=gf/OfNnXF+jm5J+wfrvS1JMcK+5uI0U7VEKdHChgpaStgJK7/oxBrQ+rVbnxtbDwxstv FIimDvAsFfsp0b/RqfPnztGYde+Kp0i+QtIbjpHpNlpJER34ZvjQI8+wWXLp1uyKdgOQ pyWyimwCNtlwWn1aggph0d2bAXe7QZcYlsRtNMhFjKnqhEwTY4pXVGVCkjYN2/rO6Ll/ huM3/LgNIaJ8zCqsuHVuzRV0cKUH2YGbUF+lg6jX8EPB6Z5VXyhOguOTqbFBUQvkkdkG BGtZSj82r+RYoM98wi34C+jw8YISSlZJHoRtnmYDTFVd/Vg6kqhKVGWHOoiQVM0WhypX ZQ== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com with ESMTP id 3a235e42dd-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 27 Jul 2021 11:02:52 -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; Tue, 27 Jul 2021 11:02:51 -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; Tue, 27 Jul 2021 11:02:51 -0700 Received: from hyd1588t430.marvell.com (unknown [10.29.52.204]) by maili.marvell.com (Postfix) with ESMTP id 1C1A15B6C27; Tue, 27 Jul 2021 10:36:48 -0700 (PDT) From: Nithin Dabilpuram To: , , , , , CC: , Nithin Dabilpuram Date: Tue, 27 Jul 2021 23:06:37 +0530 Message-ID: <20210727173637.12609-1-ndabilpuram@marvell.com> X-Mailer: git-send-email 2.8.4 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: xtI52QvYXB8xEmwsH3gES9dCb4BbG85r X-Proofpoint-GUID: xtI52QvYXB8xEmwsH3gES9dCb4BbG85r X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391, 18.0.790 definitions=2021-07-27_10:2021-07-27, 2021-07-27 signatures=0 Subject: [dpdk-dev] [PATCH] doc: announce security API changes for Inline IPsec 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" Announce changes to make rte_security_set_pkt_metadata() and rte_security_get_userdata() inline instead of C functions and also addition of another field in structure rte_security_ctx for holding flags. Signed-off-by: Nithin Dabilpuram Acked-by: Akhil Goyal --- - Series at https://inbox.dpdk.org/dev/20210624102848.3878788-1-gakhil@marvell.com/T/#mc4ba3500c024f9911b7af7e5a6e95e23f6197fdd 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 9584d6b..6a35c76 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -147,3 +147,7 @@ Deprecation Notices * cmdline: ``cmdline`` structure will be made opaque to hide platform-specific content. On Linux and FreeBSD, supported prior to DPDK 20.11, original structure will be kept until DPDK 21.11. + +* security: The functions ``rte_security_set_pkt_metadata`` and + ``rte_security_get_userdata`` will be made inline functions and additional + flags will be added in structure ``rte_security_ctx`` in DPDK 21.11.