From patchwork Fri Jun 24 13:45:24 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Srujana Challa X-Patchwork-Id: 113449 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 8EEA2A0032; Fri, 24 Jun 2022 15:45:32 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2AF2A4069D; Fri, 24 Jun 2022 15:45:32 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 66DE2400EF for ; Fri, 24 Jun 2022 15:45:30 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 25O79dKh020757; Fri, 24 Jun 2022 06:45:28 -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=mCM6LDwxRizlPCC14L1spWln6g0Z24mtHX3UFyb4cy8=; b=MlOThcsXCKaNZ7F6WgggM9Got6MWDyTNr93LNEN4Jlm6YXJRSvQVS7qxh+ecs0euf3sZ VyN3tE6pZuUoYep/OuwIHDwC3BtmpuMUZnl4J7Pq9AceGn1/R+1ERwopkzMGaxb1vYYf 8sZ1sDm64OI16+leBpbMsCvc3nrfdT1Td4RkPgxLBn/9VlkwIvpR2A8R3srS8r1dw/K6 DDJy01jphybh8ezq6iSWaiQfF74CbMTuB21H4ReJH4UvXcwyN8LP4wU7jhPL0QU10emW /eyUDzbkyFku0ZPlAjsjK06jXgIkrwQ5CDtiG6j20cmxeKZ/JEChlZRt1MxYoSaHDKsb 5Q== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3gw8ms1df3-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 24 Jun 2022 06:45:28 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Fri, 24 Jun 2022 06:45:27 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Fri, 24 Jun 2022 06:45:27 -0700 Received: from localhost.localdomain (unknown [10.28.36.175]) by maili.marvell.com (Postfix) with ESMTP id 6E0DE3F7043; Fri, 24 Jun 2022 06:45:25 -0700 (PDT) From: Srujana Challa To: , CC: , , , Subject: [PATCH] doc: announce change to cryptodev cb function prototype Date: Fri, 24 Jun 2022 19:15:24 +0530 Message-ID: <20220624134524.3461406-1-schalla@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: fNNotAh5oxZVyGvtKltQBAbxNqV3DtqX X-Proofpoint-GUID: fNNotAh5oxZVyGvtKltQBAbxNqV3DtqX X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.122.1 definitions=2022-06-24_07,2022-06-23_01,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 Function rte_cryptodev_cb_fn prototype will be extended to add new parameter qp_id, to return queue pair ID, which got error interrupt to the application, so that application can reset that particular queue pair. https://mails.dpdk.org/archives/dev/2022-June/245428.html Signed-off-by: Srujana Challa Acked-by: Akhil Goyal Acked-by: Fan Zhang Acked-by: Jerin Jacob Acked-by: Hemant Agrawal --- doc/guides/rel_notes/deprecation.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 4e5b23c53d..d6c94f8ac8 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -112,6 +112,11 @@ Deprecation Notices session and the private data of session. An opaque pointer can be exposed directly to application which can be attached to the ``rte_crypto_op``. +* cryptodev: The function pointer ``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. + * security: Hide structure ``rte_security_session`` and expose an opaque pointer for the private data to the application which can be attached to the packet while enqueuing.