diff options
| author | Stephen Hemminger <[email protected]> | 2024-09-04 11:08:46 -0700 |
|---|---|---|
| committer | David Marchand <[email protected]> | 2024-10-30 10:01:35 +0100 |
| commit | 40e6cf97d3a785645f075bc40a051502f935881d (patch) | |
| tree | c9b89911cbde8806347c819cf8d2589385d9897b /lib | |
| parent | 9625d8dbd9248490026088a7f861c3fc03e4b139 (diff) | |
eal: promote memzone segments configuration API as stable
These were added in 23.03.
Signed-off-by: Stephen Hemminger <[email protected]>
Acked-by: Morten Brørup <[email protected]>
Acked-by: David Marchand <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/eal/include/rte_memzone.h | 8 | ||||
| -rw-r--r-- | lib/eal/version.map | 6 |
2 files changed, 2 insertions, 12 deletions
diff --git a/lib/eal/include/rte_memzone.h b/lib/eal/include/rte_memzone.h index 931497f37c..e1563994d5 100644 --- a/lib/eal/include/rte_memzone.h +++ b/lib/eal/include/rte_memzone.h @@ -65,9 +65,6 @@ struct rte_memzone { } __rte_packed; /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * Set the maximum number of memzones. * * This function can only be called prior to rte_eal_init(). @@ -77,13 +74,9 @@ struct rte_memzone { * @return * 0 on success, -1 otherwise. */ -__rte_experimental int rte_memzone_max_set(size_t max); /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * Get the maximum number of memzones. * * @note: The maximum value will not change after calling rte_eal_init(). @@ -91,7 +84,6 @@ int rte_memzone_max_set(size_t max); * @return * Maximum number of memzones. */ -__rte_experimental size_t rte_memzone_max_get(void); /** diff --git a/lib/eal/version.map b/lib/eal/version.map index 1dfc7d6ed9..747331af60 100644 --- a/lib/eal/version.map +++ b/lib/eal/version.map @@ -225,6 +225,8 @@ DPDK_25 { rte_memzone_dump; rte_memzone_free; rte_memzone_lookup; + rte_memzone_max_get; + rte_memzone_max_set; rte_memzone_reserve; rte_memzone_reserve_aligned; rte_memzone_reserve_bounded; @@ -390,10 +392,6 @@ EXPERIMENTAL { # added in 23.03 __rte_eal_trace_generic_blob; - # added in 23.07 - rte_memzone_max_get; - rte_memzone_max_set; - # added in 24.03 rte_vfio_get_device_info; # WINDOWS_NO_EXPORT |
