vfio: remove experimental tag
Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com> Reviewed-by: Anatoly Burakov <anatoly.burakov@intel.com>
This commit is contained in:
parent
e9072968d8
commit
787ae736a3
@ -872,21 +872,21 @@ int rte_vfio_clear_group(__rte_unused int vfio_group_fd)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_dma_map(uint64_t __rte_unused vaddr, __rte_unused uint64_t iova,
|
||||
__rte_unused uint64_t len)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_dma_unmap(uint64_t __rte_unused vaddr, uint64_t __rte_unused iova,
|
||||
__rte_unused uint64_t len)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_get_group_num(__rte_unused const char *sysfs_base,
|
||||
__rte_unused const char *dev_addr,
|
||||
__rte_unused int *iommu_group_num)
|
||||
@ -894,45 +894,45 @@ rte_vfio_get_group_num(__rte_unused const char *sysfs_base,
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_get_container_fd(void)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_get_group_fd(__rte_unused int iommu_group_num)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_create(void)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_destroy(__rte_unused int container_fd)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_group_bind(__rte_unused int container_fd,
|
||||
__rte_unused int iommu_group_num)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_group_unbind(__rte_unused int container_fd,
|
||||
__rte_unused int iommu_group_num)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_dma_map(__rte_unused int container_fd,
|
||||
__rte_unused uint64_t vaddr,
|
||||
__rte_unused uint64_t iova,
|
||||
@ -941,7 +941,7 @@ rte_vfio_container_dma_map(__rte_unused int container_fd,
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_dma_unmap(__rte_unused int container_fd,
|
||||
__rte_unused uint64_t vaddr,
|
||||
__rte_unused uint64_t iova,
|
||||
|
@ -179,7 +179,7 @@ rte_vfio_clear_group(int vfio_group_fd);
|
||||
* 0 if success.
|
||||
* -1 on error.
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_dma_map(uint64_t vaddr, uint64_t iova, uint64_t len);
|
||||
|
||||
|
||||
@ -200,7 +200,7 @@ rte_vfio_dma_map(uint64_t vaddr, uint64_t iova, uint64_t len);
|
||||
* -1 on error.
|
||||
*/
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_dma_unmap(uint64_t vaddr, uint64_t iova, uint64_t len);
|
||||
/**
|
||||
* Parse IOMMU group number for a device
|
||||
@ -222,7 +222,7 @@ rte_vfio_dma_unmap(uint64_t vaddr, uint64_t iova, uint64_t len);
|
||||
* 0 for non-existent group or VFIO
|
||||
* <0 for errors
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_get_group_num(const char *sysfs_base,
|
||||
const char *dev_addr, int *iommu_group_num);
|
||||
|
||||
@ -236,7 +236,7 @@ rte_vfio_get_group_num(const char *sysfs_base,
|
||||
* > 0 container fd
|
||||
* < 0 for errors
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_get_container_fd(void);
|
||||
|
||||
/**
|
||||
@ -252,13 +252,10 @@ rte_vfio_get_container_fd(void);
|
||||
* > 0 group fd
|
||||
* < 0 for errors
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_get_group_fd(int iommu_group_num);
|
||||
|
||||
/**
|
||||
* @warning
|
||||
* @b EXPERIMENTAL: this API may change, or be removed, without prior notice
|
||||
*
|
||||
* Create a new container for device binding.
|
||||
*
|
||||
* @note Any newly allocated DPDK memory will not be mapped into these
|
||||
@ -269,13 +266,10 @@ rte_vfio_get_group_fd(int iommu_group_num);
|
||||
* the container fd if successful
|
||||
* <0 if failed
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_create(void);
|
||||
|
||||
/**
|
||||
* @warning
|
||||
* @b EXPERIMENTAL: this API may change, or be removed, without prior notice
|
||||
*
|
||||
* Destroy the container, unbind all vfio groups within it.
|
||||
*
|
||||
* @param container_fd
|
||||
@ -285,13 +279,10 @@ rte_vfio_container_create(void);
|
||||
* 0 if successful
|
||||
* <0 if failed
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_destroy(int container_fd);
|
||||
|
||||
/**
|
||||
* @warning
|
||||
* @b EXPERIMENTAL: this API may change, or be removed, without prior notice
|
||||
*
|
||||
* Bind a IOMMU group to a container.
|
||||
*
|
||||
* @param container_fd
|
||||
@ -304,13 +295,10 @@ rte_vfio_container_destroy(int container_fd);
|
||||
* group fd if successful
|
||||
* <0 if failed
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_group_bind(int container_fd, int iommu_group_num);
|
||||
|
||||
/**
|
||||
* @warning
|
||||
* @b EXPERIMENTAL: this API may change, or be removed, without prior notice
|
||||
*
|
||||
* Unbind a IOMMU group from a container.
|
||||
*
|
||||
* @param container_fd
|
||||
@ -323,13 +311,10 @@ rte_vfio_container_group_bind(int container_fd, int iommu_group_num);
|
||||
* 0 if successful
|
||||
* <0 if failed
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_group_unbind(int container_fd, int iommu_group_num);
|
||||
|
||||
/**
|
||||
* @warning
|
||||
* @b EXPERIMENTAL: this API may change, or be removed, without prior notice
|
||||
*
|
||||
* Perform DMA mapping for devices in a container.
|
||||
*
|
||||
* @param container_fd
|
||||
@ -348,14 +333,11 @@ rte_vfio_container_group_unbind(int container_fd, int iommu_group_num);
|
||||
* 0 if successful
|
||||
* <0 if failed
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_dma_map(int container_fd, uint64_t vaddr,
|
||||
uint64_t iova, uint64_t len);
|
||||
|
||||
/**
|
||||
* @warning
|
||||
* @b EXPERIMENTAL: this API may change, or be removed, without prior notice
|
||||
*
|
||||
* Perform DMA unmapping for devices in a container.
|
||||
*
|
||||
* @param container_fd
|
||||
@ -374,7 +356,7 @@ rte_vfio_container_dma_map(int container_fd, uint64_t vaddr,
|
||||
* 0 if successful
|
||||
* <0 if failed
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_dma_unmap(int container_fd, uint64_t vaddr,
|
||||
uint64_t iova, uint64_t len);
|
||||
|
||||
|
@ -1562,7 +1562,7 @@ container_dma_unmap(struct vfio_config *vfio_cfg, uint64_t vaddr, uint64_t iova,
|
||||
return ret;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_dma_map(uint64_t vaddr, uint64_t iova, uint64_t len)
|
||||
{
|
||||
if (len == 0) {
|
||||
@ -1573,7 +1573,7 @@ rte_vfio_dma_map(uint64_t vaddr, uint64_t iova, uint64_t len)
|
||||
return container_dma_map(default_vfio_cfg, vaddr, iova, len);
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_dma_unmap(uint64_t vaddr, uint64_t iova, uint64_t len)
|
||||
{
|
||||
if (len == 0) {
|
||||
@ -1616,7 +1616,7 @@ rte_vfio_noiommu_is_enabled(void)
|
||||
return c == 'Y';
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_create(void)
|
||||
{
|
||||
int i;
|
||||
@ -1666,7 +1666,7 @@ rte_vfio_container_destroy(int container_fd)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_group_bind(int container_fd, int iommu_group_num)
|
||||
{
|
||||
struct vfio_config *vfio_cfg;
|
||||
@ -1712,7 +1712,7 @@ rte_vfio_container_group_bind(int container_fd, int iommu_group_num)
|
||||
return vfio_group_fd;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_group_unbind(int container_fd, int iommu_group_num)
|
||||
{
|
||||
struct vfio_config *vfio_cfg;
|
||||
@ -1751,7 +1751,7 @@ rte_vfio_container_group_unbind(int container_fd, int iommu_group_num)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_dma_map(int container_fd, uint64_t vaddr, uint64_t iova,
|
||||
uint64_t len)
|
||||
{
|
||||
@ -1771,7 +1771,7 @@ rte_vfio_container_dma_map(int container_fd, uint64_t vaddr, uint64_t iova,
|
||||
return container_dma_map(vfio_cfg, vaddr, iova, len);
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_dma_unmap(int container_fd, uint64_t vaddr, uint64_t iova,
|
||||
uint64_t len)
|
||||
{
|
||||
@ -1793,14 +1793,14 @@ rte_vfio_container_dma_unmap(int container_fd, uint64_t vaddr, uint64_t iova,
|
||||
|
||||
#else
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_dma_map(uint64_t __rte_unused vaddr, __rte_unused uint64_t iova,
|
||||
__rte_unused uint64_t len)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_dma_unmap(uint64_t __rte_unused vaddr, uint64_t __rte_unused iova,
|
||||
__rte_unused uint64_t len)
|
||||
{
|
||||
@ -1847,7 +1847,7 @@ rte_vfio_clear_group(__rte_unused int vfio_group_fd)
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_get_group_num(__rte_unused const char *sysfs_base,
|
||||
__rte_unused const char *dev_addr,
|
||||
__rte_unused int *iommu_group_num)
|
||||
@ -1855,45 +1855,45 @@ rte_vfio_get_group_num(__rte_unused const char *sysfs_base,
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_get_container_fd(void)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_get_group_fd(__rte_unused int iommu_group_num)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_create(void)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_destroy(__rte_unused int container_fd)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_group_bind(__rte_unused int container_fd,
|
||||
__rte_unused int iommu_group_num)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_group_unbind(__rte_unused int container_fd,
|
||||
__rte_unused int iommu_group_num)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_dma_map(__rte_unused int container_fd,
|
||||
__rte_unused uint64_t vaddr,
|
||||
__rte_unused uint64_t iova,
|
||||
@ -1902,7 +1902,7 @@ rte_vfio_container_dma_map(__rte_unused int container_fd,
|
||||
return -1;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_vfio_container_dma_unmap(__rte_unused int container_fd,
|
||||
__rte_unused uint64_t vaddr,
|
||||
__rte_unused uint64_t iova,
|
||||
|
@ -248,6 +248,17 @@ DPDK_18.08 {
|
||||
rte_uuid_is_null;
|
||||
rte_uuid_parse;
|
||||
rte_uuid_unparse;
|
||||
rte_vfio_container_create;
|
||||
rte_vfio_container_destroy;
|
||||
rte_vfio_container_dma_map;
|
||||
rte_vfio_container_dma_unmap;
|
||||
rte_vfio_container_group_bind;
|
||||
rte_vfio_container_group_unbind;
|
||||
rte_vfio_dma_map;
|
||||
rte_vfio_dma_unmap;
|
||||
rte_vfio_get_container_fd;
|
||||
rte_vfio_get_group_fd;
|
||||
rte_vfio_get_group_num;
|
||||
|
||||
} DPDK_18.05;
|
||||
|
||||
@ -325,15 +336,4 @@ EXPERIMENTAL {
|
||||
rte_service_may_be_active;
|
||||
rte_socket_count;
|
||||
rte_socket_id_by_idx;
|
||||
rte_vfio_dma_map;
|
||||
rte_vfio_dma_unmap;
|
||||
rte_vfio_get_container_fd;
|
||||
rte_vfio_get_group_fd;
|
||||
rte_vfio_get_group_num;
|
||||
rte_vfio_container_create;
|
||||
rte_vfio_container_destroy;
|
||||
rte_vfio_container_dma_map;
|
||||
rte_vfio_container_dma_unmap;
|
||||
rte_vfio_container_group_bind;
|
||||
rte_vfio_container_group_unbind;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user