]> git.droids-corp.org - dpdk.git/commitdiff
net/vhost: retrieve vid for a given port
authorCiara Loftus <ciara.loftus@intel.com>
Tue, 13 Sep 2016 13:47:43 +0000 (14:47 +0100)
committerYuanhan Liu <yuanhan.liu@linux.intel.com>
Thu, 29 Sep 2016 13:07:13 +0000 (15:07 +0200)
In some cases when using the vHost PMD, certain vHost library functions
may still need to be accessed. One such example is the
rte_vhost_get_queue_num function which returns the number of virtqueues
reported by the guest - information which is not exposed by the PMD.

This commit introduces a new rte_eth_vhost function that returns the
'vid' associated with a given port id. This allows the PMD user to call
vHost library functions which require the 'vid' value.

Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
Acked-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
drivers/net/vhost/rte_eth_vhost.c
drivers/net/vhost/rte_eth_vhost.h
drivers/net/vhost/rte_pmd_vhost_version.map

index 1c416134841dedffea01531fb6800df30f23e93c..1e80fd2484a78a99c0594fd6dd5e62da82123b6e 100644 (file)
@@ -428,6 +428,35 @@ rte_eth_vhost_get_queue_event(uint8_t port_id,
        return -1;
 }
 
+int
+rte_eth_vhost_get_vid_from_port_id(uint8_t port_id)
+{
+       struct internal_list *list;
+       struct rte_eth_dev *eth_dev;
+       struct vhost_queue *vq;
+       int vid = -1;
+
+       if (!rte_eth_dev_is_valid_port(port_id))
+               return -1;
+
+       pthread_mutex_lock(&internal_list_lock);
+
+       TAILQ_FOREACH(list, &internal_list, next) {
+               eth_dev = list->eth_dev;
+               if (eth_dev->data->port_id == port_id) {
+                       vq = eth_dev->data->rx_queues[0];
+                       if (vq) {
+                               vid = vq->vid;
+                       }
+                       break;
+               }
+       }
+
+       pthread_mutex_unlock(&internal_list_lock);
+
+       return vid;
+}
+
 static void *
 vhost_driver_session(void *param __rte_unused)
 {
index ff5d877b148de9b8cd1d8b4a001724cf69bf2089..7c98b1ae0fc0a42a2f91f1c7d81997f1dcd38cfc 100644 (file)
@@ -102,6 +102,15 @@ struct rte_eth_vhost_queue_event {
 int rte_eth_vhost_get_queue_event(uint8_t port_id,
                struct rte_eth_vhost_queue_event *event);
 
+/**
+ * Get the 'vid' value associated with the specified port.
+ *
+ * @return
+ *  - On success, the 'vid' associated with 'port_id'.
+ *  - On failure, a negative value.
+ */
+int rte_eth_vhost_get_vid_from_port_id(uint8_t port_id);
+
 #ifdef __cplusplus
 }
 #endif
index 65bf3a8cc92120d26a709ee284363d6084d68011..3d44083ffb6291863174a9908ed4ecda5b9aa362 100644 (file)
@@ -8,3 +8,9 @@ DPDK_16.04 {
 
        local: *;
 };
+
+DPDK_16.11 {
+       global:
+
+       rte_eth_vhost_get_vid_from_port_id;
+};