From patchwork Sun Oct 2 19:03:47 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Akhil Goyal X-Patchwork-Id: 117253 X-Patchwork-Delegate: thomas@monjalon.net 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 7B158A0093; Sun, 2 Oct 2022 21:03:56 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5D77D40684; Sun, 2 Oct 2022 21:03:56 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id AFFF940146 for ; Sun, 2 Oct 2022 21:03:55 +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 292Du15T010590; Sun, 2 Oct 2022 12:03:55 -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=XH71WeRGZ8xEjiJl5V9ca7McPKDZzTo4kjr/sNNUTJc=; b=WD6A+WWg3D1jIGxSqED70jvOaIFa7px5d9nqknrZKrr7rl1mbgZYQJUAspDNB7bP1jlU ULAwhoeGGwEBbZtVTGp5/Z0GJIY2f3fBu3pHazvwQG8GmwzAwEc5F7VZitlq/DU+7WXe TGAJvNaVimCqoTh4sEzv2cJSSrWoGFt7kXl1Hygv14tlkIK4whxZProaswKKrqd43IBj xk9A7PUQ6hNpyQfiKpXGrmACN605Duwn6QO6ojqkPgZhyMjOCMoIlL59Qq1x2Y0plofD hfaR/BCWmaMR22vtFUuCBVSKodXub8QVs7pgQa/kPqTZa76alzPUUjahTD/j6vjE9Fec DA== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3jxn2pk7ke-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Sun, 02 Oct 2022 12:03:54 -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.2; Sun, 2 Oct 2022 12:03:52 -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; Sun, 2 Oct 2022 12:03:52 -0700 Received: from localhost.localdomain (unknown [10.28.36.102]) by maili.marvell.com (Postfix) with ESMTP id A36BC3F7059; Sun, 2 Oct 2022 12:03:51 -0700 (PDT) From: Akhil Goyal To: CC: , Akhil Goyal Subject: [PATCH] doc: remove deprecation for inline IPsec events Date: Mon, 3 Oct 2022 00:33:47 +0530 Message-ID: <20221002190347.2672370-1-gakhil@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: NGIyM5BC6whjk-UE0-TPjNS-n86Rx03j X-Proofpoint-GUID: NGIyM5BC6whjk-UE0-TPjNS-n86Rx03j 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-02_01,2022-09-29_03,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 The IPsec SA expiry events were added as per below patch, but the deprecation notice was not removed. This patch removed it. Fixes: d1ce79d14ba1 ("ethdev: add IPsec SA expiry event subtypes") Signed-off-by: Akhil Goyal --- doc/guides/rel_notes/deprecation.rst | 5 ----- 1 file changed, 5 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 80ec8ba01d..26ff2eedac 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -119,11 +119,6 @@ Deprecation Notices alternative is implemented. The legacy actions should be removed in DPDK 22.11. -* ethdev: The enum ``rte_eth_event_ipsec_subtype`` will be extended to add - new subtype values ``RTE_ETH_EVENT_IPSEC_SA_PKT_EXPIRY``, - ``RTE_ETH_EVENT_IPSEC_SA_BYTE_HARD_EXPIRY`` and - ``RTE_ETH_EVENT_IPSEC_SA_PKT_HARD_EXPIRY`` in DPDK 22.11. - * cryptodev: The function ``rte_cryptodev_cb_fn`` will be updated to have another parameter ``qp_id`` to return the queue pair ID which got error interrupt to the application,