]> git.droids-corp.org - dpdk.git/commitdiff
vdev: remove eal prefix
authorThomas Monjalon <thomas@monjalon.net>
Thu, 4 May 2017 16:01:19 +0000 (18:01 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 5 May 2017 12:38:35 +0000 (14:38 +0200)
The VDEV code will move to the bus drivers directory.
Rename functions from rte_eal_vdev_ to rte_vdev_
to prepare the move of the driver out of EAL.

The prefix rte_eal_vdrv_ is also renamed to rte_vdev_.
It was used for registration of vdev drivers.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
24 files changed:
doc/guides/cryptodevs/aesni_gcm.rst
doc/guides/cryptodevs/aesni_mb.rst
doc/guides/cryptodevs/kasumi.rst
doc/guides/cryptodevs/null.rst
doc/guides/cryptodevs/scheduler.rst
doc/guides/cryptodevs/snow3g.rst
doc/guides/cryptodevs/zuc.rst
doc/guides/eventdevs/octeontx.rst
doc/guides/eventdevs/sw.rst
doc/guides/prog_guide/cryptodev_lib.rst
drivers/net/bonding/rte_eth_bond_api.c
lib/librte_cryptodev/rte_cryptodev.c
lib/librte_eal/bsdapp/eal/rte_eal_version.map
lib/librte_eal/common/eal_common_dev.c
lib/librte_eal/common/eal_common_vdev.c
lib/librte_eal/common/include/rte_dev.h
lib/librte_eal/common/include/rte_vdev.h
lib/librte_eal/linuxapp/eal/rte_eal_version.map
test/test/test_cryptodev.c
test/test/test_cryptodev_perf.c
test/test/test_eventdev.c
test/test/test_eventdev_octeontx.c
test/test/test_eventdev_sw.c
test/test/test_link_bonding_rssconf.c

index ba9ecb5b41bf89ee8ba178e1f61c8f428c5adac8..84cdc52abcecf63ff4bb57b1b5f973935d891d3c 100644 (file)
@@ -67,9 +67,9 @@ In order to enable this virtual crypto PMD, user must:
 
 To use the PMD in an application, user must:
 
-* Call rte_eal_vdev_init("crypto_aesni_gcm") within the application.
+* Call rte_vdev_init("crypto_aesni_gcm") within the application.
 
-* Use --vdev="crypto_aesni_gcm" in the EAL options, which will call rte_eal_vdev_init() internally.
+* Use --vdev="crypto_aesni_gcm" in the EAL options, which will call rte_vdev_init() internally.
 
 The following parameters (all optional) can be provided in the previous two calls:
 
index 1a0402325941548324ec4a99f4aeb70527dd52c3..ecb52a10d7f398ca8e7398382e20169bd8045721 100644 (file)
@@ -113,9 +113,9 @@ In order to enable this virtual crypto PMD, user must:
 
 To use the PMD in an application, user must:
 
-* Call rte_eal_vdev_init("crypto_aesni_mb") within the application.
+* Call rte_vdev_init("crypto_aesni_mb") within the application.
 
-* Use --vdev="crypto_aesni_mb" in the EAL options, which will call rte_eal_vdev_init() internally.
+* Use --vdev="crypto_aesni_mb" in the EAL options, which will call rte_vdev_init() internally.
 
 The following parameters (all optional) can be provided in the previous two calls:
 
index bb8522b9e5103e0da586787a51b8476e32e9dcaf..bff9321e33b47255bd8f09b20960dff7125a1cc9 100644 (file)
@@ -90,9 +90,9 @@ In order to enable this virtual crypto PMD, user must:
 
 To use the PMD in an application, user must:
 
-* Call rte_eal_vdev_init("crypto_kasumi") within the application.
+* Call rte_vdev_init("crypto_kasumi") within the application.
 
-* Use --vdev="crypto_kasumi" in the EAL options, which will call rte_eal_vdev_init() internally.
+* Use --vdev="crypto_kasumi" in the EAL options, which will call rte_vdev_init() internally.
 
 The following parameters (all optional) can be provided in the previous two calls:
 
index e712e2bd788368770887c935cdac9caf0dae7f45..4a3bfdfd2c62827012a6e480a6ee5c2973b813ff 100644 (file)
@@ -76,9 +76,9 @@ Initialization
 
 To use the PMD in an application, user must:
 
-* Call rte_eal_vdev_init("crypto_null") within the application.
+* Call rte_vdev_init("crypto_null") within the application.
 
-* Use --vdev="crypto_null" in the EAL options, which will call rte_eal_vdev_init() internally.
+* Use --vdev="crypto_null" in the EAL options, which will call rte_vdev_init() internally.
 
 The following parameters (all optional) can be provided in the previous two calls:
 
index ddc02b4b86c0118acfc565dfa404a70f2bcb8a15..32e56537380d742f4e6bdb1086e58951add62bef 100644 (file)
@@ -72,10 +72,10 @@ Initialization
 
 To use the PMD in an application, user must:
 
-* Call rte_eal_vdev_init("crpyto_scheduler") within the application.
+* Call rte_vdev_init("crpyto_scheduler") within the application.
 
 * Use --vdev="crpyto_scheduler" in the EAL options, which will call
-  rte_eal_vdev_init() internally.
+  rte_vdev_init() internally.
 
 
 The following parameters (all optional) can be provided in the previous
index 3f811deccdee814dc454581906137e88428f4847..12b6c4af7a7d8121bc8f8d610ed8fcb24796a9c3 100644 (file)
@@ -83,9 +83,9 @@ In order to enable this virtual crypto PMD, user must:
 
 To use the PMD in an application, user must:
 
-* Call rte_eal_vdev_init("crypto_snow3g") within the application.
+* Call rte_vdev_init("crypto_snow3g") within the application.
 
-* Use --vdev="crypto_snow3g" in the EAL options, which will call rte_eal_vdev_init() internally.
+* Use --vdev="crypto_snow3g" in the EAL options, which will call rte_vdev_init() internally.
 
 The following parameters (all optional) can be provided in the previous two calls:
 
index ed80c992795f652c9260c393618e0c4120d36e6f..6deb11abec4246854970bbf258b3408c135290ca 100644 (file)
@@ -91,9 +91,9 @@ In order to enable this virtual crypto PMD, user must:
 
 To use the PMD in an application, user must:
 
-* Call rte_eal_vdev_init("crypto_zuc") within the application.
+* Call rte_vdev_init("crypto_zuc") within the application.
 
-* Use --vdev="crypto_zuc" in the EAL options, which will call rte_eal_vdev_init() internally.
+* Use --vdev="crypto_zuc" in the EAL options, which will call rte_vdev_init() internally.
 
 The following parameters (all optional) can be provided in the previous two calls:
 
index 51ad5696b68bea4852f70043f39f00fa6419b5da..6697c544eba0d01dbfbf4ef1655e50f49473eb3d 100644 (file)
@@ -129,10 +129,10 @@ SSO PCIe VF devices will be probed and then the vdev device can be created
 from the application code, or from the EAL command line based on
 the number of probed/bound SSO PCIe VF device to DPDK by
 
-* Invoking ``rte_eal_vdev_init("event_octeontx")`` from the application
+* Invoking ``rte_vdev_init("event_octeontx")`` from the application
 
 * Using ``--vdev="event_octeontx"`` in the EAL options, which will call
-  rte_eal_vdev_init() internally
+  rte_vdev_init() internally
 
 Example:
 
index b0c984546153bfa56a457a0853ca8fefd6c181a1..fb63c844422d1bbd922d47428a732276abb1bd97 100644 (file)
@@ -60,10 +60,10 @@ Configuration and Options
 The software eventdev is a vdev device, and as such can be created from the
 application code, or from the EAL command line:
 
-* Call ``rte_eal_vdev_init("event_sw0")`` from the application
+* Call ``rte_vdev_init("event_sw0")`` from the application
 
 * Use ``--vdev="event_sw0"`` in the EAL options, which will call
-  rte_eal_vdev_init() internally
+  rte_vdev_init() internally
 
 Example:
 
index ca3f551b93280ee3f6a90912f6c3136083387e8f..4f98f28cab03a0e169e4183e314892292efce403 100644 (file)
@@ -70,11 +70,11 @@ From the command line using the --vdev EAL option
 
    --vdev  'cryptodev_aesni_mb_pmd0,max_nb_queue_pairs=2,max_nb_sessions=1024,socket_id=0'
 
-Our using the rte_eal_vdev_init API within the application code.
+Our using the rte_vdev_init API within the application code.
 
 .. code-block:: c
 
-   rte_eal_vdev_init("cryptodev_aesni_mb_pmd",
+   rte_vdev_init("cryptodev_aesni_mb_pmd",
                      "max_nb_queue_pairs=2,max_nb_sessions=1024,socket_id=0")
 
 All virtual Crypto devices support the following initialization parameters:
index 80c7091125f919f1e1ed40fd0a4417fd3c887ef5..36ec65d634668b357c5b3d2e104ad791459dc3ad 100644 (file)
@@ -177,7 +177,7 @@ rte_eth_bond_create(const char *name, uint8_t mode, uint8_t socket_id)
        if (ret < 0 || ret >= (int)sizeof(devargs))
                return -ENOMEM;
 
-       ret = rte_eal_vdev_init(name, devargs);
+       ret = rte_vdev_init(name, devargs);
        if (ret)
                return -ENOMEM;
 
@@ -200,7 +200,7 @@ rte_eth_bond_create(const char *name, uint8_t mode, uint8_t socket_id)
 int
 rte_eth_bond_free(const char *name)
 {
-       return rte_eal_vdev_uninit(name);
+       return rte_vdev_uninit(name);
 }
 
 static int
index 02db8a582e7f3a23243f88f85b08bde0248d9df8..b65cd9ce97724d51d1688fdc5f7335977838db70 100644 (file)
@@ -439,7 +439,7 @@ rte_cryptodev_get_feature_name(uint64_t flag)
 int
 rte_cryptodev_create_vdev(const char *name, const char *args)
 {
-       return rte_eal_vdev_init(name, args);
+       return rte_vdev_init(name, args);
 }
 
 struct rte_cryptodev *
index 804b94170fca972d7db42532c255e539396bcf50..2e48a7366b54d752dcb28cf1b90e609b867159b4 100644 (file)
@@ -39,8 +39,6 @@ DPDK_2.0 {
        rte_eal_remote_launch;
        rte_eal_tailq_lookup;
        rte_eal_tailq_register;
-       rte_eal_vdev_init;
-       rte_eal_vdev_uninit;
        rte_eal_wait_lcore;
        rte_exit;
        rte_free;
@@ -147,8 +145,6 @@ DPDK_16.11 {
        rte_delay_us_callback_register;
        rte_eal_dev_attach;
        rte_eal_dev_detach;
-       rte_eal_vdrv_register;
-       rte_eal_vdrv_unregister;
 
 } DPDK_16.07;
 
@@ -188,6 +184,10 @@ DPDK_17.05 {
        rte_pci_unmap_device;
        rte_pci_unregister;
        rte_pci_write_config;
+       rte_vdev_init;
+       rte_vdev_register;
+       rte_vdev_uninit;
+       rte_vdev_unregister;
        vfio_get_container_fd;
        vfio_get_group_fd;
        vfio_get_group_no;
index a7a2c4bd24ecc03c8813349f7fd8b3e2e13d293f..a400ddd0070ef62d2c61807ec72fbdd8a90edcc4 100644 (file)
@@ -59,7 +59,7 @@ int rte_eal_dev_attach(const char *name, const char *devargs)
                        goto err;
 
        } else {
-               if (rte_eal_vdev_init(name, devargs))
+               if (rte_vdev_init(name, devargs))
                        goto err;
        }
 
@@ -83,7 +83,7 @@ int rte_eal_dev_detach(const char *name)
                if (rte_pci_detach(&addr) < 0)
                        goto err;
        } else {
-               if (rte_eal_vdev_uninit(name))
+               if (rte_vdev_uninit(name))
                        goto err;
        }
        return 0;
index e436dac0322fc79786240494c5d61ae6619626bd..0037a6416e3d2a7e1c72bee0c3d532c1d08327e6 100644 (file)
@@ -56,7 +56,7 @@ static void rte_vdev_bus_register(void);
 
 /* register a driver */
 void
-rte_eal_vdrv_register(struct rte_vdev_driver *driver)
+rte_vdev_register(struct rte_vdev_driver *driver)
 {
        rte_vdev_bus_register();
 
@@ -65,7 +65,7 @@ rte_eal_vdrv_register(struct rte_vdev_driver *driver)
 
 /* unregister a driver */
 void
-rte_eal_vdrv_unregister(struct rte_vdev_driver *driver)
+rte_vdev_unregister(struct rte_vdev_driver *driver)
 {
        TAILQ_REMOVE(&vdev_driver_list, driver, next);
 }
@@ -194,7 +194,7 @@ alloc_devargs(const char *name, const char *args)
 }
 
 int
-rte_eal_vdev_init(const char *name, const char *args)
+rte_vdev_init(const char *name, const char *args)
 {
        struct rte_vdev_device *dev;
        struct rte_devargs *devargs;
@@ -257,7 +257,7 @@ vdev_remove_driver(struct rte_vdev_device *dev)
 }
 
 int
-rte_eal_vdev_uninit(const char *name)
+rte_vdev_uninit(const char *name)
 {
        struct rte_vdev_device *dev;
        struct rte_devargs *devargs;
index 759059889db60a4d3e4865bc01d34779be07588e..de20c063f8f24c49f984a3260f9e480ecacd3cb9 100644 (file)
@@ -153,7 +153,7 @@ struct rte_device {
  * @return
  *  0 on success, negative on error
  */
-int rte_eal_vdev_init(const char *name, const char *args);
+int rte_vdev_init(const char *name, const char *args);
 
 /**
  * Uninitalize a driver specified by name.
@@ -163,7 +163,7 @@ int rte_eal_vdev_init(const char *name, const char *args);
  * @return
  *  0 on success, negative on error
  */
-int rte_eal_vdev_uninit(const char *name);
+int rte_vdev_uninit(const char *name);
 
 /**
  * Attach a device to a registered driver.
index 8db2c00c82ac18a41cb317efcdff7906e9846db3..e6b678ea32cd656d860251dec966247fcf7fd66b 100644 (file)
@@ -92,7 +92,7 @@ struct rte_vdev_driver {
  *   A pointer to a rte_vdev_driver structure describing the driver
  *   to be registered.
  */
-void rte_eal_vdrv_register(struct rte_vdev_driver *driver);
+void rte_vdev_register(struct rte_vdev_driver *driver);
 
 /**
  * Unregister a virtual device driver.
@@ -101,7 +101,7 @@ void rte_eal_vdrv_register(struct rte_vdev_driver *driver);
  *   A pointer to a rte_vdev_driver structure describing the driver
  *   to be unregistered.
  */
-void rte_eal_vdrv_unregister(struct rte_vdev_driver *driver);
+void rte_vdev_unregister(struct rte_vdev_driver *driver);
 
 #define RTE_PMD_REGISTER_VDEV(nm, vdrv)\
 RTE_INIT(vdrvinitfn_ ##vdrv);\
@@ -110,7 +110,7 @@ static void vdrvinitfn_ ##vdrv(void)\
 {\
        (vdrv).driver.name = RTE_STR(nm);\
        (vdrv).driver.alias = vdrvinit_ ## nm ## _alias;\
-       rte_eal_vdrv_register(&vdrv);\
+       rte_vdev_register(&vdrv);\
 } \
 RTE_PMD_EXPORT_NAME(nm, __COUNTER__)
 
index 4595a8d6debd97ffab7918fd87d60c1f2127e880..670bab3a5ed6dd1767d06c943db8288de74297f6 100644 (file)
@@ -39,8 +39,6 @@ DPDK_2.0 {
        rte_eal_remote_launch;
        rte_eal_tailq_lookup;
        rte_eal_tailq_register;
-       rte_eal_vdev_init;
-       rte_eal_vdev_uninit;
        rte_eal_wait_lcore;
        rte_exit;
        rte_free;
@@ -151,8 +149,6 @@ DPDK_16.11 {
        rte_delay_us_callback_register;
        rte_eal_dev_attach;
        rte_eal_dev_detach;
-       rte_eal_vdrv_register;
-       rte_eal_vdrv_unregister;
 
 } DPDK_16.07;
 
@@ -193,6 +189,10 @@ DPDK_17.05 {
        rte_pci_unmap_device;
        rte_pci_unregister;
        rte_pci_write_config;
+       rte_vdev_init;
+       rte_vdev_register;
+       rte_vdev_uninit;
+       rte_vdev_unregister;
        vfio_get_container_fd;
        vfio_get_group_fd;
        vfio_get_group_no;
index 42a716174a69fdee3b2fc39a770c16a644268b42..029ce8a0f70994f45ef978ef394db5401c0f5d29 100644 (file)
@@ -219,7 +219,7 @@ testsuite_setup(void)
                nb_devs = rte_cryptodev_count_devtype(
                                RTE_CRYPTODEV_AESNI_MB_PMD);
                if (nb_devs < 1) {
-                       ret = rte_eal_vdev_init(
+                       ret = rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_AESNI_MB_PMD), NULL);
 
                        TEST_ASSERT(ret == 0,
@@ -239,7 +239,7 @@ testsuite_setup(void)
                nb_devs = rte_cryptodev_count_devtype(
                                RTE_CRYPTODEV_AESNI_GCM_PMD);
                if (nb_devs < 1) {
-                       TEST_ASSERT_SUCCESS(rte_eal_vdev_init(
+                       TEST_ASSERT_SUCCESS(rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_AESNI_GCM_PMD), NULL),
                                "Failed to create instance of"
                                " pmd : %s",
@@ -256,7 +256,7 @@ testsuite_setup(void)
 #endif
                nb_devs = rte_cryptodev_count_devtype(RTE_CRYPTODEV_SNOW3G_PMD);
                if (nb_devs < 1) {
-                       TEST_ASSERT_SUCCESS(rte_eal_vdev_init(
+                       TEST_ASSERT_SUCCESS(rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_SNOW3G_PMD), NULL),
                                "Failed to create instance of"
                                " pmd : %s",
@@ -273,7 +273,7 @@ testsuite_setup(void)
 #endif
                nb_devs = rte_cryptodev_count_devtype(RTE_CRYPTODEV_KASUMI_PMD);
                if (nb_devs < 1) {
-                       TEST_ASSERT_SUCCESS(rte_eal_vdev_init(
+                       TEST_ASSERT_SUCCESS(rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_KASUMI_PMD), NULL),
                                "Failed to create instance of"
                                " pmd : %s",
@@ -290,7 +290,7 @@ testsuite_setup(void)
 #endif
                nb_devs = rte_cryptodev_count_devtype(RTE_CRYPTODEV_ZUC_PMD);
                if (nb_devs < 1) {
-                       TEST_ASSERT_SUCCESS(rte_eal_vdev_init(
+                       TEST_ASSERT_SUCCESS(rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_ZUC_PMD), NULL),
                                "Failed to create instance of"
                                " pmd : %s",
@@ -308,7 +308,7 @@ testsuite_setup(void)
                nb_devs = rte_cryptodev_count_devtype(
                                RTE_CRYPTODEV_NULL_PMD);
                if (nb_devs < 1) {
-                       ret = rte_eal_vdev_init(
+                       ret = rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_NULL_PMD), NULL);
 
                        TEST_ASSERT(ret == 0,
@@ -328,7 +328,7 @@ testsuite_setup(void)
                nb_devs = rte_cryptodev_count_devtype(
                                RTE_CRYPTODEV_OPENSSL_PMD);
                if (nb_devs < 1) {
-                       ret = rte_eal_vdev_init(
+                       ret = rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_OPENSSL_PMD),
                                NULL);
 
@@ -348,7 +348,7 @@ testsuite_setup(void)
                nb_devs = rte_cryptodev_count_devtype(
                                RTE_CRYPTODEV_ARMV8_PMD);
                if (nb_devs < 1) {
-                       ret = rte_eal_vdev_init(
+                       ret = rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_ARMV8_PMD),
                                NULL);
 
@@ -369,7 +369,7 @@ testsuite_setup(void)
                nb_devs = rte_cryptodev_count_devtype(
                                RTE_CRYPTODEV_SCHEDULER_PMD);
                if (nb_devs < 1) {
-                       ret = rte_eal_vdev_init(
+                       ret = rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_SCHEDULER_PMD),
                                NULL);
 
@@ -7825,7 +7825,7 @@ test_scheduler_attach_slave_op(void)
                        snprintf(vdev_name, sizeof(vdev_name), "%s_%u",
                                        RTE_STR(CRYPTODEV_NAME_AESNI_MB_PMD),
                                        i);
-                       ret = rte_eal_vdev_init(vdev_name, NULL);
+                       ret = rte_vdev_init(vdev_name, NULL);
 
                        TEST_ASSERT(ret == 0,
                                "Failed to create instance %u of"
index 9d9919bd2367869514057cb559fb75d5636fe5f1..d60028db2183b83b6e7cfe2d2c51d4985547d2d9 100644 (file)
@@ -332,7 +332,7 @@ testsuite_setup(void)
 #endif
                nb_devs = rte_cryptodev_count_devtype(RTE_CRYPTODEV_AESNI_MB_PMD);
                if (nb_devs < 1) {
-                       ret = rte_eal_vdev_init(
+                       ret = rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_AESNI_MB_PMD), NULL);
 
                        TEST_ASSERT(ret == 0,
@@ -350,7 +350,7 @@ testsuite_setup(void)
 #endif
                nb_devs = rte_cryptodev_count_devtype(RTE_CRYPTODEV_AESNI_GCM_PMD);
                if (nb_devs < 1) {
-                       ret = rte_eal_vdev_init(
+                       ret = rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_AESNI_GCM_PMD), NULL);
 
                        TEST_ASSERT(ret == 0,
@@ -368,7 +368,7 @@ testsuite_setup(void)
 #endif
                nb_devs = rte_cryptodev_count_devtype(RTE_CRYPTODEV_SNOW3G_PMD);
                if (nb_devs < 1) {
-                       ret = rte_eal_vdev_init(
+                       ret = rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_SNOW3G_PMD), NULL);
 
                        TEST_ASSERT(ret == 0,
@@ -387,7 +387,7 @@ testsuite_setup(void)
                nb_devs = rte_cryptodev_count_devtype(
                                RTE_CRYPTODEV_OPENSSL_PMD);
                if (nb_devs < 1) {
-                       ret = rte_eal_vdev_init(
+                       ret = rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_OPENSSL_PMD),
                                NULL);
 
@@ -407,7 +407,7 @@ testsuite_setup(void)
                nb_devs = rte_cryptodev_count_devtype(
                                RTE_CRYPTODEV_ARMV8_PMD);
                if (nb_devs < 1) {
-                       ret = rte_eal_vdev_init(
+                       ret = rte_vdev_init(
                                RTE_STR(CRYPTODEV_NAME_ARMV8_PMD),
                                NULL);
 
index 5bd46346d52a0c1240d5997c3df95ac59d562286..88b80a928fed4a64dde930ab0ec46d7e8c07adca 100644 (file)
@@ -51,7 +51,7 @@ testsuite_setup(void)
        if (!count) {
                printf("Failed to find a valid event device,"
                        " testing with event_skeleton device\n");
-               return rte_eal_vdev_init("event_skeleton", NULL);
+               return rte_vdev_init("event_skeleton", NULL);
        }
        return TEST_SUCCESS;
 }
index 033744f5172aece254b1d7fc5d13fb76d2c5ea3e..9e95722ba1330cd014147a78901a11390a2c56fa 100644 (file)
@@ -115,7 +115,7 @@ testsuite_setup(void)
        if (evdev < 0) {
                printf("%d: Eventdev %s not found - creating.\n",
                                __LINE__, eventdev_name);
-               if (rte_eal_vdev_init(eventdev_name, NULL) < 0) {
+               if (rte_vdev_init(eventdev_name, NULL) < 0) {
                        printf("Error creating eventdev %s\n", eventdev_name);
                        return TEST_FAILED;
                }
index fd6447e9b0fb91baf4a663d9dcc2601087cdd8ad..86efd742df031f8ccbc46789e9d7d31d478ce011 100644 (file)
@@ -2999,7 +2999,7 @@ test_sw_eventdev(void)
        if (evdev < 0) {
                printf("%d: Eventdev %s not found - creating.\n",
                                __LINE__, eventdev_name);
-               if (rte_eal_vdev_init(eventdev_name, NULL) < 0) {
+               if (rte_vdev_init(eventdev_name, NULL) < 0) {
                        printf("Error creating eventdev\n");
                        return -1;
                }
index 673ceaeaf93bd70eef99c71a8aea973f3847b8b4..d28db7d7c180cbc5b34db1ab09f4ee3a9f01b876 100644 (file)
@@ -550,7 +550,7 @@ test_setup(void)
                port_id = rte_eth_dev_count();
                snprintf(name, sizeof(name), SLAVE_DEV_NAME_FMT, port_id);
 
-               retval = rte_eal_vdev_init(name,
+               retval = rte_vdev_init(name,
                        "driver=net_null,size=64,copy=0");
                TEST_ASSERT_SUCCESS(retval, "Failed to create null device '%s'\n",
                                name);