From patchwork Thu Sep 7 13:00:37 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anoob Joseph X-Patchwork-Id: 131230 X-Patchwork-Delegate: gakhil@marvell.com 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 5609342536; Thu, 7 Sep 2023 15:00:43 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DA99C402AF; Thu, 7 Sep 2023 15:00:42 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 39C7D4026C for ; Thu, 7 Sep 2023 15:00:41 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 38719S0p013258; Thu, 7 Sep 2023 06:00:40 -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=w3yT4Tvd4TCU+l832WV8minXkwNno2XhS7BCNa3bDtA=; b=I6hONjBH4ipL7favqLZkOgZsrjnczl4o3o4rZdKuPlH69i7JMm/pREHSCdURxpgepus8 WurmQjyA7TI1u9fMX/qkpOp+MPiWC9cr2wpPK84MV63x/qYNxmZfSONhFR06LNb89PsJ WoK6w3x2qQ/gQbXQBlFFE+fWUiJXOUuT6ZvdFV4jQMMAS5fvRvsFuby3B+6ncanBdb6R oI8YJOiRBU/zTW0ANYZTnXdHTR8FlmSVVOIdXKSlTEmyKindeqf5+9L6INoAXf19ss4Y prS8XvDcTDYG4096TWQhNSJON7BNE7gaEjOkudodnroolerb9RTOEbHYFXyf2VUuAVzI 9A== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3sxu7cmevr-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 07 Sep 2023 06:00:39 -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.48; Thu, 7 Sep 2023 06:00:38 -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.48 via Frontend Transport; Thu, 7 Sep 2023 06:00:38 -0700 Received: from BG-LT92004.corp.innovium.com (unknown [10.28.163.189]) by maili.marvell.com (Postfix) with ESMTP id 861705B6965; Thu, 7 Sep 2023 06:00:36 -0700 (PDT) From: Anoob Joseph To: Akhil Goyal , Thomas Monjalon CC: Jerin Jacob , Subject: [PATCH] cryptodev: add missing doc Date: Thu, 7 Sep 2023 18:30:37 +0530 Message-ID: <20230907130037.208-1-anoobj@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-GUID: 2JNJ_2nqPyaSX8xnlFglF-SEWAQJDEjp X-Proofpoint-ORIG-GUID: 2JNJ_2nqPyaSX8xnlFglF-SEWAQJDEjp X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.267,Aquarius:18.0.957,Hydra:6.0.601,FMLib:17.11.176.26 definitions=2023-09-07_06,2023-09-05_01,2023-05-22_02 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 Description for rte_cryptodev_get_sec_ctx is missing. Add the same. Signed-off-by: Anoob Joseph --- lib/cryptodev/rte_cryptodev.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/cryptodev/rte_cryptodev.h b/lib/cryptodev/rte_cryptodev.h index ba730373fb..8876e0427f 100644 --- a/lib/cryptodev/rte_cryptodev.h +++ b/lib/cryptodev/rte_cryptodev.h @@ -973,6 +973,15 @@ struct rte_cryptodev_cb_rcu { /**< RCU QSBR variable per queue pair */ }; +/** + * Get the security context for the cryptodev. + * + * @param dev_id + * The device identifier. + * @return + * - NULL on error. + * - Pointer to security context on success. + */ void * rte_cryptodev_get_sec_ctx(uint8_t dev_id);