Skip to content

Commit de6e472

Browse files
nicolas-chautrumcoquelin
authored andcommitted
bbdev: removing unnecessary symbols from version map
A number of inline functions should not be in the version map since ABI versioning would be irrelevant. Signed-off-by: Nicolas Chautru <[email protected]> Reviewed-by: Maxime Coquelin <[email protected]> Acked-by: Hemant Agrawal <[email protected]>
1 parent a111438 commit de6e472

File tree

3 files changed

+1
-26
lines changed

3 files changed

+1
-26
lines changed

lib/bbdev/rte_bbdev.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,6 @@ rte_bbdev_dequeue_fft_ops(uint16_t dev_id, uint16_t queue_id,
897897
* The number of operations actually dequeued (this is the number of entries
898898
* copied into the @p ops array).
899899
*/
900-
__rte_experimental
901900
static inline uint16_t
902901
rte_bbdev_dequeue_mldts_ops(uint16_t dev_id, uint16_t queue_id,
903902
struct rte_bbdev_mldts_op **ops, uint16_t num_ops)

lib/bbdev/rte_bbdev_op.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,6 @@ rte_bbdev_fft_op_alloc_bulk(struct rte_mempool *mempool,
11631163
* - 0 on success.
11641164
* - EINVAL if invalid mempool is provided.
11651165
*/
1166-
__rte_experimental
11671166
static inline int
11681167
rte_bbdev_mldts_op_alloc_bulk(struct rte_mempool *mempool,
11691168
struct rte_bbdev_mldts_op **ops, uint16_t num_ops)
@@ -1240,7 +1239,6 @@ rte_bbdev_fft_op_free_bulk(struct rte_bbdev_fft_op **ops, unsigned int num_ops)
12401239
* @param num_ops
12411240
* Number of structures
12421241
*/
1243-
__rte_experimental
12441242
static inline void
12451243
rte_bbdev_mldts_op_free_bulk(struct rte_bbdev_mldts_op **ops, unsigned int num_ops)
12461244
{

lib/bbdev/version.map

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,9 @@ DPDK_25 {
66
rte_bbdev_callback_unregister;
77
rte_bbdev_close;
88
rte_bbdev_count;
9-
rte_bbdev_dec_op_alloc_bulk;
10-
rte_bbdev_dec_op_free_bulk;
11-
rte_bbdev_dequeue_dec_ops;
12-
rte_bbdev_dequeue_enc_ops;
13-
rte_bbdev_dequeue_fft_ops;
149
rte_bbdev_device_status_str;
1510
rte_bbdev_devices;
16-
rte_bbdev_enc_op_alloc_bulk;
17-
rte_bbdev_enc_op_free_bulk;
18-
rte_bbdev_enqueue_dec_ops;
19-
rte_bbdev_enqueue_enc_ops;
20-
rte_bbdev_enqueue_fft_ops;
2111
rte_bbdev_enqueue_status_str;
22-
rte_bbdev_fft_op_alloc_bulk;
23-
rte_bbdev_fft_op_free_bulk;
2412
rte_bbdev_find_next;
2513
rte_bbdev_get_named_dev;
2614
rte_bbdev_info_get;
@@ -44,14 +32,4 @@ DPDK_25 {
4432
rte_bbdev_stop;
4533

4634
local: *;
47-
};
48-
49-
EXPERIMENTAL {
50-
global:
51-
52-
# added in 23.11
53-
rte_bbdev_dequeue_mldts_ops;
54-
rte_bbdev_enqueue_mldts_ops;
55-
rte_bbdev_mldts_op_alloc_bulk;
56-
rte_bbdev_mldts_op_free_bulk;
57-
};
35+
};

0 commit comments

Comments
 (0)