]> git.droids-corp.org - dpdk.git/commitdiff
eal: remove experimental tag for probe/remove
authorThomas Monjalon <thomas@monjalon.net>
Thu, 1 Nov 2018 14:46:32 +0000 (15:46 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 6 Nov 2018 00:14:02 +0000 (01:14 +0100)
The functions rte_dev_probe() and rte_dev_remove() are new
in DPDK 18.11 so they got the experimental tag by policy.
However they are too much basic functions for being skipped
by strict applications which do not use experimental functions.

The alternative is to use rte_eal_hotplug_add() and
rte_eal_hotplug_remove(), but their API requires the application
to parse the devargs string in order to provide bus name,
device name and driver arguments.

The new function rte_dev_probe() is really simpler to use and
more flexible by accepting any devargs string.
Let's encourage applications to use it.

The old functions rte_eal_hotplug_* may be deprecated later.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Kevin Traynor <ktraynor@redhat.com>
Tested-by: Kevin Traynor <ktraynor@redhat.com>
lib/librte_eal/common/eal_common_dev.c
lib/librte_eal/common/include/rte_dev.h
lib/librte_eal/rte_eal_version.map

index 62e9ed477aaf0d2288a59a40e43b81097348c0ca..5759ec2d89fea133298bfc7684db3f1ce3286bca 100644 (file)
@@ -186,7 +186,7 @@ err_devarg:
        return ret;
 }
 
-int __rte_experimental
+int
 rte_dev_probe(const char *devargs)
 {
        struct eal_dev_mp_req req;
@@ -322,7 +322,7 @@ local_dev_remove(struct rte_device *dev)
        return 0;
 }
 
-int __rte_experimental
+int
 rte_dev_remove(struct rte_device *dev)
 {
        struct eal_dev_mp_req req;
index cd6c187cc562191bd52e6e0a32187d50266747dd..a9724dc9181c2fc5d1b1cec46eba497458ec2f97 100644 (file)
@@ -196,9 +196,6 @@ int rte_eal_hotplug_add(const char *busname, const char *devname,
                        const char *drvargs);
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
  * Add matching devices.
  *
  * In multi-process, it will request other processes to add the same device.
@@ -209,7 +206,7 @@ int rte_eal_hotplug_add(const char *busname, const char *devname,
  * @return
  *   0 on success, negative on error.
  */
-int __rte_experimental rte_dev_probe(const char *devargs);
+int rte_dev_probe(const char *devargs);
 
 /**
  * Hotplug remove a given device from a specific bus.
@@ -227,9 +224,6 @@ int __rte_experimental rte_dev_probe(const char *devargs);
 int rte_eal_hotplug_remove(const char *busname, const char *devname);
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
  * Remove one device.
  *
  * In multi-process, it will request other processes to remove the same device.
@@ -240,7 +234,7 @@ int rte_eal_hotplug_remove(const char *busname, const char *devname);
  * @return
  *   0 on success, negative on error.
  */
-int __rte_experimental rte_dev_remove(struct rte_device *dev);
+int rte_dev_remove(struct rte_device *dev);
 
 /**
  * Device comparison function.
index 61bc5ca050c1e2d178c00ed23bc5165240741bd0..3fe78260d802d0d4737abd444bdf4ef6f28cfbdd 100644 (file)
@@ -259,6 +259,8 @@ DPDK_18.08 {
 DPDK_18.11 {
        global:
 
+       rte_dev_probe;
+       rte_dev_remove;
        rte_eal_get_runtime_dir;
        rte_eal_hotplug_add;
        rte_eal_hotplug_remove;
@@ -285,8 +287,6 @@ EXPERIMENTAL {
        rte_dev_is_probed;
        rte_dev_iterator_init;
        rte_dev_iterator_next;
-       rte_dev_probe;
-       rte_dev_remove;
        rte_devargs_add;
        rte_devargs_dump;
        rte_devargs_insert;