]> git.droids-corp.org - dpdk.git/commitdiff
vhost: prefix vDPA enum value for PCI address type
authorMaxime Coquelin <maxime.coquelin@redhat.com>
Thu, 26 Mar 2020 14:14:22 +0000 (15:14 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 21 Apr 2020 11:57:07 +0000 (13:57 +0200)
In order to avoid potential conflicts, rename the PCI_ADDR
enum value to VDPA_ADDR_PCI in vdpa_addr_type_enum.

All symbols referencing this enum are experimental, so it
does not break API policy.

Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Acked-by: Matan Azrad <matan@mellanox.com>
drivers/vdpa/ifc/ifcvf_vdpa.c
drivers/vdpa/mlx5/mlx5_vdpa.c
examples/vdpa/main.c
lib/librte_vhost/rte_vdpa.h
lib/librte_vhost/vdpa.c

index da4667ba54e1c68b78eabf463534c72345c50959..ec97178dcb18fe53f6ce9eba158bd9ef2fa96961 100644 (file)
@@ -1177,7 +1177,7 @@ ifcvf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
                (1ULL << VHOST_F_LOG_ALL);
 
        internal->dev_addr.pci_addr = pci_dev->addr;
-       internal->dev_addr.type = PCI_ADDR;
+       internal->dev_addr.type = VDPA_ADDR_PCI;
        list->internal = internal;
 
        if (rte_kvargs_count(kvlist, IFCVF_SW_FALLBACK_LM)) {
index 97d914a473246cd18e69d4fabb1dfd90041ee0e8..0a9f31a87de914089024558da87faec8e5d3cf99 100644 (file)
@@ -446,7 +446,7 @@ mlx5_vdpa_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
        }
        priv->ctx = ctx;
        priv->dev_addr.pci_addr = pci_dev->addr;
-       priv->dev_addr.type = PCI_ADDR;
+       priv->dev_addr.type = VDPA_ADDR_PCI;
        priv->id = rte_vdpa_register_device(&priv->dev_addr, &mlx5_vdpa_ops);
        if (priv->id < 0) {
                DRV_LOG(ERR, "Failed to register vDPA device.");
index 6d6831f349cd1e5e977bf2d8b636896457ab8ae8..d9a9112b161420a1d4a03a280ace0ec70e130b07 100644 (file)
@@ -331,7 +331,7 @@ static void cmd_create_vdpa_port_parsed(void *parsed_result,
                cmdline_printf(cl, "Unable to parse the given bdf.\n");
                return;
        }
-       addr.type = PCI_ADDR;
+       addr.type = VDPA_ADDR_PCI;
        did = rte_vdpa_find_device_id(&addr);
        if (did < 0) {
                cmdline_printf(cl, "Unable to find vdpa device id.\n");
index 9a3deb31df1da101aa298c240c4080d796293f4e..3c400ee79bc9de48b9c849c069ff128d0fb0c022 100644 (file)
@@ -19,7 +19,7 @@
 #define MAX_VDPA_NAME_LEN 128
 
 enum vdpa_addr_type {
-       PCI_ADDR,
+       VDPA_ADDR_PCI,
        VDPA_ADDR_MAX
 };
 
index 2b867087394d755b5e3d33a5be7cabd71eae0b1b..b2b2a105f1e7f8e7c7dc6b6f8d701d2a009aed9a 100644 (file)
@@ -27,7 +27,7 @@ is_same_vdpa_device(struct rte_vdpa_dev_addr *a,
                return false;
 
        switch (a->type) {
-       case PCI_ADDR:
+       case VDPA_ADDR_PCI:
                if (a->pci_addr.domain != b->pci_addr.domain ||
                                a->pci_addr.bus != b->pci_addr.bus ||
                                a->pci_addr.devid != b->pci_addr.devid ||