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 CCBDB4570D; Thu, 1 Aug 2024 09:11:54 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BB18240E2C; Thu, 1 Aug 2024 09:11:54 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id CFC964014F for ; Thu, 1 Aug 2024 09:11:52 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 46VNtubU008068; Thu, 1 Aug 2024 00:11:51 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:message-id :mime-version:subject:to; s=pfpt0220; bh=0v3zlEDlVAXq6gKtJe2NyzE n5SXKhxifUeIaOQ4Em3Y=; b=FGjADTTnO35n2BBhTrn8j9zge+kKrkOcrubRj64 05oLjeJAILlt5f51S4QgemDuZMn/ipqyAIzETwYniJMN5CQmOjWj007/f82DE1Ya AoToagcbUcVxZc7EspZRiqm3rjkaXYVjb74sIfG69b1AhUZwtzfEAY1Grv7T3Gpc olus9MExJiRtn2TecunbVu0bHLxaPu8F5PuVeqSwinSnQ2ZbcBcE7Jq0ivN2Otpt iF4ggkw9ffHRjnPlxVQ/araovjHNP7qQUGT6ZUxkCJCTqG0wv0ZHB5SSUugEYDi4 UtQmeFnSvVjWfYHw+8PUA6w+7OF8lYY4EB9gAqzhfe3nlXQ== Received: from dc5-exch05.marvell.com ([199.233.59.128]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 40qychsaw1-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 01 Aug 2024 00:11:51 -0700 (PDT) Received: from DC5-EXCH05.marvell.com (10.69.176.209) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Thu, 1 Aug 2024 00:11:50 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Thu, 1 Aug 2024 00:11:50 -0700 Received: from localhost.localdomain (unknown [10.28.36.175]) by maili.marvell.com (Postfix) with ESMTP id 73E535B6932; Thu, 1 Aug 2024 00:11:48 -0700 (PDT) From: Srujana Challa To: , CC: , , Subject: [PATCH] Revert "doc: extension of crypto event callback announced" Date: Thu, 1 Aug 2024 12:41:47 +0530 Message-ID: <20240801071147.3020911-1-schalla@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: lx_YjejKAlDO9jALE1fsDWuMBh4oG1zX X-Proofpoint-GUID: lx_YjejKAlDO9jALE1fsDWuMBh4oG1zX X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.1039,Hydra:6.0.680,FMLib:17.12.28.16 definitions=2024-08-01_04,2024-07-31_01,2024-05-17_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 previously planned update to the `rte_cryptodev_cb_fn` function prototype is being reverted. The introduction of the `rte_cryptodev_queue_pair_event_error_query` API provides a means for applications to retrieve the queue pair ID that encountered an error interrupt. This makes the addition of the `qp_id` parameter to the `rte_cryptodev_cb_fn` function unnecessary, and as such, the proposed extension is no longer required. Signed-off-by: Srujana Challa --- 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 6948641ff6..107e6a58ef 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -115,11 +115,6 @@ Deprecation Notices The legacy actions should be removed once ``MODIFY_FIELD`` alternative is implemented in drivers. -* 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, - so that application can reset that particular queue pair. - * cryptodev: The Intel IPsec Multi-Buffer version will be bumped to a minimum version of v1.4. This will effect the KASUMI, SNOW3G, ZUC, AESNI GCM, AESNI MB and CHACHAPOLY -- 2.25.1