]> git.droids-corp.org - dpdk.git/commitdiff
kvargs: promote get from key as stable
authorOlivier Matz <olivier.matz@6wind.com>
Wed, 29 Sep 2021 21:39:40 +0000 (23:39 +0200)
committerDavid Marchand <david.marchand@redhat.com>
Thu, 30 Sep 2021 13:31:01 +0000 (15:31 +0200)
The function rte_kvargs_get() is used by eal and pci bus driver since
its introduction in commit 3ab385063cb9 ("kvargs: add get by key") and
commit d2a66ad79480 ("bus: add device arguments name parsing"), in
dpdk 21.05.

Let's promote it as stable.

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Reviewed-by: Xueming Li <xuemingl@nvidia.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
lib/kvargs/rte_kvargs.h
lib/kvargs/version.map

index c30891c6684435aed937303ce0f5d27093c2ff7f..328f0d3cc6a31b18e5ace4b889674e7ff5629b61 100644 (file)
@@ -130,7 +130,6 @@ void rte_kvargs_free(struct rte_kvargs *kvlist);
  *   NULL if no key matches the input,
  *   a value associated with a matching key otherwise.
  */
-__rte_experimental
 const char *rte_kvargs_get(const struct rte_kvargs *kvlist, const char *key);
 
 /**
index 75b13fcb785593c68ecf12769ce9ffe8002b3bb3..236f35c02bbcec52f0bc9dd09776fad0649aba4e 100644 (file)
@@ -3,6 +3,7 @@ DPDK_22 {
 
        rte_kvargs_count;
        rte_kvargs_free;
+       rte_kvargs_get;
        rte_kvargs_parse;
        rte_kvargs_parse_delim;
        rte_kvargs_process;
@@ -15,6 +16,4 @@ EXPERIMENTAL {
 
        rte_kvargs_strcmp;
 
-       # added in 21.05
-       rte_kvargs_get;
 };