]> git.droids-corp.org - dpdk.git/commitdiff
eal: hide internal hotplug function
authorDavid Marchand <david.marchand@redhat.com>
Sat, 29 Jun 2019 11:58:44 +0000 (13:58 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Sat, 29 Jun 2019 17:04:07 +0000 (19:04 +0200)
This API was experimental and not properly marked in the map file.
But looking more closely, this is just an internal wrapper for EAL init.
Hide it in the hotplug code.

Fixes: 244d5130719c ("eal: enable hotplug on multi-process")
Cc: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
lib/librte_eal/common/hotplug_mp.c
lib/librte_eal/common/hotplug_mp.h
lib/librte_eal/common/include/rte_eal.h
lib/librte_eal/linux/eal/eal.c

index 4f316ba9a9fa6700a70b0fed7b67f2cb33c94a52..ee791903b3b74fe73240cbdcf2305128cda36b49 100644 (file)
@@ -438,7 +438,7 @@ int eal_dev_hotplug_request_to_secondary(struct eal_dev_mp_req *req)
        return 0;
 }
 
-int rte_mp_dev_hotplug_init(void)
+int eal_mp_dev_hotplug_init(void)
 {
        int ret;
 
index 597fde3d7c12c2aaf3058d738f1bb1dc949ac716..8fcf9b52e24c19ad33a34397a9e760b305e9173a 100644 (file)
@@ -28,6 +28,15 @@ struct eal_dev_mp_req {
        int result;
 };
 
+/**
+ * Register all mp action callbacks for hotplug.
+ *
+ * @return
+ *   0 on success, negative on error.
+ */
+int
+eal_mp_dev_hotplug_init(void);
+
 /**
  * This is a synchronous wrapper for secondary process send
  * request to primary process, this is invoked when an attach
index cf701e177d3dc4bd7360f884e26384d5d22ab7d4..27808a3364c534247b0401408f159677069006a4 100644 (file)
@@ -408,15 +408,6 @@ rte_mp_request_async(struct rte_mp_msg *req, const struct timespec *ts,
 int __rte_experimental
 rte_mp_reply(struct rte_mp_msg *msg, const char *peer);
 
-/**
- * Register all mp action callbacks for hotplug.
- *
- * @return
- *   0 on success, negative on error.
- */
-int __rte_experimental
-rte_mp_dev_hotplug_init(void);
-
 /**
  * Usage function typedef used by the application usage function.
  *
index aa0137ecd9540824fcda524144ef4c12159109ed..8a0b387ce0073bb0344bc4e94044e5082f03ee9f 100644 (file)
@@ -59,6 +59,7 @@
 #include "eal_hugepages.h"
 #include "eal_options.h"
 #include "eal_vfio.h"
+#include "hotplug_mp.h"
 
 #define MEMSIZE_IF_NO_HUGE_PAGE (64ULL * 1024ULL * 1024ULL)
 
@@ -1062,7 +1063,7 @@ rte_eal_init(int argc, char **argv)
        }
 
        /* register multi-process action callbacks for hotplug */
-       if (rte_mp_dev_hotplug_init() < 0) {
+       if (eal_mp_dev_hotplug_init() < 0) {
                rte_eal_init_alert("failed to register mp callback for hotplug");
                return -1;
        }