From: Mattias Rönnblom Date: Wed, 1 Sep 2021 07:29:12 +0000 (+0200) Subject: eal: promote random generator with upper bound to stable X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=15a1e00a65153e43146241d5f7d5444fcf3fb4eb;p=dpdk.git eal: promote random generator with upper bound to stable Remove experimental tag from rte_rand_max(). Signed-off-by: Mattias Rönnblom Acked-by: Ray Kinsella --- diff --git a/lib/eal/include/rte_random.h b/lib/eal/include/rte_random.h index 2b30ec85c1..29f5f1325a 100644 --- a/lib/eal/include/rte_random.h +++ b/lib/eal/include/rte_random.h @@ -62,7 +62,6 @@ rte_rand(void); * @return * A pseudo-random value between 0 and (upper_bound-1). */ -__rte_experimental uint64_t rte_rand_max(uint64_t upper_bound); diff --git a/lib/eal/version.map b/lib/eal/version.map index 14bac7006d..2719b1a283 100644 --- a/lib/eal/version.map +++ b/lib/eal/version.map @@ -216,6 +216,7 @@ DPDK_22 { rte_mp_sendmsg; rte_openlog_stream; rte_rand; + rte_rand_max; rte_realloc; rte_realloc_socket; rte_reciprocal_value; @@ -323,7 +324,6 @@ EXPERIMENTAL { rte_intr_ack; rte_lcore_cpuset; rte_lcore_to_cpu_id; - rte_rand_max; # added in 20.02 rte_thread_is_intr;