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 CD6C64587C; Wed, 28 Aug 2024 01:03:55 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A140640285; Wed, 28 Aug 2024 01:03:55 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.19]) by mails.dpdk.org (Postfix) with ESMTP id 314B34026F for ; Wed, 28 Aug 2024 01:03:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1724799835; x=1756335835; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Tt/82bsnOxTgcIgTM9LXwr6A2G8sePHvCZTOgCF4EBg=; b=Ius8C9LEV6X6DasQ68rhAwm5DYbT0W1kG4Ew79qcfdIRdHSylX7vT8iG nx5GPrphQiU5iK9ola9tlgTPuw3U5uP5c/Lm1lFw0dGiPCGle11bKTY3w 7Fii9lV4kl8NW7jKWhqPYajzhggQUaZzJ4B8nCjL4n1IiAx+oOdd7z20P TfF/Q5XZ9JxWF2jgIbVGIDZUYGy/2oxmJC4t4jtVd8KblHMvQ7acrEjxU npZUKWxg0IT0v1/9atgT8qa24QNRx3hJOhcIffFMgJi2IHEFScb/P1ZFQ bH0H4nphHULIhY2Cy+fChTgQNpGxyp2fFzGnVvwLXidtAQDNtlKdL2jB7 Q==; X-CSE-ConnectionGUID: qSd/fxltQy2oVjrlo5eZAQ== X-CSE-MsgGUID: F3yfAuYMRl2LJiT0qVHHww== X-IronPort-AV: E=McAfee;i="6700,10204,11177"; a="23172132" X-IronPort-AV: E=Sophos;i="6.10,181,1719903600"; d="scan'208";a="23172132" Received: from fmviesa004.fm.intel.com ([10.60.135.144]) by orvoesa111.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Aug 2024 16:03:52 -0700 X-CSE-ConnectionGUID: UHC2mk7FRO2DKVANAKI1eA== X-CSE-MsgGUID: wbuFlv1KQj+21a3aCHizWg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.10,181,1719903600"; d="scan'208";a="67725715" Received: from spr-npg-bds1-eec2.sn.intel.com (HELO spr-npg-bds1-eec2..) ([10.233.181.123]) by fmviesa004.fm.intel.com with ESMTP; 27 Aug 2024 16:03:50 -0700 From: Nicolas Chautru To: dev@dpdk.org, maxime.coquelin@redhat.com Cc: hemant.agrawal@nxp.com, david.marchand@redhat.com, hernan.vargas@intel.com, Nicolas Chautru Subject: [PATCH v3 1/1] bbdev: removing unnecessary symbols from version map Date: Tue, 27 Aug 2024 16:06:48 -0700 Message-Id: <20240827230648.3943434-2-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240827230648.3943434-1-nicolas.chautru@intel.com> References: <20240827230648.3943434-1-nicolas.chautru@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 A number of inline functions should not be in the version map since ABI versioning would be irrelevant. Signed-off-by: Nicolas Chautru --- lib/bbdev/rte_bbdev.h | 1 - lib/bbdev/rte_bbdev_op.h | 2 -- lib/bbdev/version.map | 24 +----------------------- 3 files changed, 1 insertion(+), 26 deletions(-) diff --git a/lib/bbdev/rte_bbdev.h b/lib/bbdev/rte_bbdev.h index 25514c58ac..bd49a0a304 100644 --- a/lib/bbdev/rte_bbdev.h +++ b/lib/bbdev/rte_bbdev.h @@ -897,7 +897,6 @@ rte_bbdev_dequeue_fft_ops(uint16_t dev_id, uint16_t queue_id, * The number of operations actually dequeued (this is the number of entries * copied into the @p ops array). */ -__rte_experimental static inline uint16_t rte_bbdev_dequeue_mldts_ops(uint16_t dev_id, uint16_t queue_id, struct rte_bbdev_mldts_op **ops, uint16_t num_ops) diff --git a/lib/bbdev/rte_bbdev_op.h b/lib/bbdev/rte_bbdev_op.h index 459631d0d0..5b862c13a6 100644 --- a/lib/bbdev/rte_bbdev_op.h +++ b/lib/bbdev/rte_bbdev_op.h @@ -1159,7 +1159,6 @@ rte_bbdev_fft_op_alloc_bulk(struct rte_mempool *mempool, * - 0 on success. * - EINVAL if invalid mempool is provided. */ -__rte_experimental static inline int rte_bbdev_mldts_op_alloc_bulk(struct rte_mempool *mempool, struct rte_bbdev_mldts_op **ops, uint16_t num_ops) @@ -1236,7 +1235,6 @@ rte_bbdev_fft_op_free_bulk(struct rte_bbdev_fft_op **ops, unsigned int num_ops) * @param num_ops * Number of structures */ -__rte_experimental static inline void rte_bbdev_mldts_op_free_bulk(struct rte_bbdev_mldts_op **ops, unsigned int num_ops) { diff --git a/lib/bbdev/version.map b/lib/bbdev/version.map index e0d82ff752..2a5baacd90 100644 --- a/lib/bbdev/version.map +++ b/lib/bbdev/version.map @@ -6,21 +6,9 @@ DPDK_25 { rte_bbdev_callback_unregister; rte_bbdev_close; rte_bbdev_count; - rte_bbdev_dec_op_alloc_bulk; - rte_bbdev_dec_op_free_bulk; - rte_bbdev_dequeue_dec_ops; - rte_bbdev_dequeue_enc_ops; - rte_bbdev_dequeue_fft_ops; rte_bbdev_device_status_str; rte_bbdev_devices; - rte_bbdev_enc_op_alloc_bulk; - rte_bbdev_enc_op_free_bulk; - rte_bbdev_enqueue_dec_ops; - rte_bbdev_enqueue_enc_ops; - rte_bbdev_enqueue_fft_ops; rte_bbdev_enqueue_status_str; - rte_bbdev_fft_op_alloc_bulk; - rte_bbdev_fft_op_free_bulk; rte_bbdev_find_next; rte_bbdev_get_named_dev; rte_bbdev_info_get; @@ -44,14 +32,4 @@ DPDK_25 { rte_bbdev_stop; local: *; -}; - -EXPERIMENTAL { - global: - - # added in 23.11 - rte_bbdev_dequeue_mldts_ops; - rte_bbdev_enqueue_mldts_ops; - rte_bbdev_mldts_op_alloc_bulk; - rte_bbdev_mldts_op_free_bulk; -}; +}; \ No newline at end of file -- 2.34.1