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 C78DE4570D; Thu, 1 Aug 2024 09:36:14 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 85E2E4066F; Thu, 1 Aug 2024 09:36:14 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 6AB504014F for ; Thu, 1 Aug 2024 09:36:12 +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 46VNtwwr008127; Thu, 1 Aug 2024 00:36:11 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to; s=pfpt0220; bh=3 sx82N7hcRrPk8egvKfPfUdENc4yvN/8+2wOi2NSA08=; b=Ed6n6IfraR6oXAyCW 90aEKhU/mShPUj24XyIS5n+XikoKBxSciltK8lalwBbeQemk1blbnXHntMBtQl3I Lj8POouQT0n/YOWDzrW3HGDZR6lxAyO7CoURDQ2A2CACxp8Rtd8oV24snHcx+/ej hMuNTwNQjghoYFA3RDFViDNJmJmrIQBTN1wYAsYnCqlPH2bRiGNthzYMa0MQHib/ IWgk9Cc7X6w0+Na5EZxfQn2d2tD2cvmlPxuo0GnYd+gBwwOjygMetRDEnQBWLe0p v0EtVmZI0Zb0Z6cdHkA01mdBue9pyk4hiXZ9zIBEecFNQAOsXocZOSb1GQvN5I0o 11MCQ== Received: from dc5-exch05.marvell.com ([199.233.59.128]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 40qychsddq-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 01 Aug 2024 00:36:11 -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:36:10 -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:36:10 -0700 Received: from localhost.localdomain (unknown [10.28.36.175]) by maili.marvell.com (Postfix) with ESMTP id E5BAC5B6931; Thu, 1 Aug 2024 00:36:08 -0700 (PDT) From: Srujana Challa To: CC: , , Subject: [PATCH v1] Revert "doc: extension of crypto event callback announced" Date: Thu, 1 Aug 2024 13:06:07 +0530 Message-ID: <20240801073607.3026414-1-schalla@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20240801071147.3020911-1-schalla@marvell.com> References: <20240801071147.3020911-1-schalla@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: CivRE-zZv2gpaz3B0ce8lVy0i5mftycz X-Proofpoint-GUID: CivRE-zZv2gpaz3B0ce8lVy0i5mftycz 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 211f59fdc9..4dd592c371 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -169,11 +169,6 @@ Deprecation Notices * fib: A new flag field will be introduced in ``rte_fib_conf`` structure in DPDK 24.11. This field will be used to pass extra configuration settings. -* 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 structure ``rte_cryptodev_qp_conf`` will be updated to have a new parameter to set priority of that particular queue pair. -- 2.25.1