numam-dpdk/drivers/net/vhost/rte_pmd_vhost_version.map
Ciara Loftus e22ed04288 net/vhost: retrieve vid for a given port
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>
2016-09-29 15:07:13 +02:00

17 lines
225 B
Plaintext

DPDK_16.04 {
global:
rte_eth_vhost_feature_disable;
rte_eth_vhost_feature_enable;
rte_eth_vhost_feature_get;
rte_eth_vhost_get_queue_event;
local: *;
};
DPDK_16.11 {
global:
rte_eth_vhost_get_vid_from_port_id;
};