From patchwork Tue Dec 6 09:23:29 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Volodymyr Fialko X-Patchwork-Id: 120476 X-Patchwork-Delegate: jerinj@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 68C44A0543; Tue, 6 Dec 2022 10:23:48 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1623A4021D; Tue, 6 Dec 2022 10:23:48 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 13C4140156 for ; Tue, 6 Dec 2022 10:23:45 +0100 (CET) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 2B63CYBL012815 for ; Tue, 6 Dec 2022 01:23:45 -0800 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=2eP78WccsbDvWwjThJQnnuTDDvU3+yZ26RvtifyAx0w=; b=M6mRmmhLdYxlb3/mBbzMJyF3GCbPlOZoo73Es9pyQrU2mvZH28uT3YEOX/kV8K2wtuRn jthKUkuwYKhKV5T9zJEpiHTS8fB/dzDpSlY7dClyxT8GZsLPiqTRcb6+u6C5UV3CSllt 4ToHd+phPcUgsSb0i/EDg00oq1NVsHzShW2d+/UqEFd/EYx9IMtUY6Z/kO2Jk3S8vlTr ApHGOF4k2eqz8Id/nL+i56U/GcTu9qCISs5c0oMjpS0yCRsQEODzktz3sasTkGYZfvG1 9sQtbAUt1WQNnZBeepDNXktaTikT3+/N4H1NkSCLN7e1d4wA1yz3e00eWV/3ODsUOByz NQ== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3m86us9fjh-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Tue, 06 Dec 2022 01:23:44 -0800 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; Tue, 6 Dec 2022 01:23:43 -0800 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; Tue, 6 Dec 2022 01:23:43 -0800 Received: from localhost.localdomain (unknown [10.28.34.39]) by maili.marvell.com (Postfix) with ESMTP id 454A73F7053; Tue, 6 Dec 2022 01:23:41 -0800 (PST) From: Volodymyr Fialko To: , Jerin Jacob , Volodymyr Fialko , Akhil Goyal CC: Subject: [PATCH] build: fix missing crypto vec limits in version Date: Tue, 6 Dec 2022 10:23:29 +0100 Message-ID: <20221206092329.2250774-1-vfialko@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-GUID: Te27qw5VyvKmWnzknbCQOs9QhDtirWVT X-Proofpoint-ORIG-GUID: Te27qw5VyvKmWnzknbCQOs9QhDtirWVT X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.923,Hydra:6.0.545,FMLib:17.11.122.1 definitions=2022-12-06_05,2022-12-05_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 Add missing function `rte_event_crypto_adapter_vector_limits_get` to version.map. Fixes: c1749bc5ee10 ("eventdev: introduce event cryptodev vector type") Signed-off-by: Volodymyr Fialko Acked-by: Fan Zhang --- lib/eventdev/version.map | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/eventdev/version.map b/lib/eventdev/version.map index dd63ec6f68..1a7fffd17f 100644 --- a/lib/eventdev/version.map +++ b/lib/eventdev/version.map @@ -20,6 +20,7 @@ DPDK_23 { rte_event_crypto_adapter_stats_get; rte_event_crypto_adapter_stats_reset; rte_event_crypto_adapter_stop; + rte_event_crypto_adapter_vector_limits_get; rte_event_dequeue_timeout_ticks; rte_event_dev_attr_get; rte_event_dev_close;