[dpdk-dev] vfio: fix export of renamed symbols

Message ID 20180527222335.16850-1-thomas@monjalon.net (mailing list archive)
State Accepted, archived
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Thomas Monjalon May 27, 2018, 10:23 p.m. UTC
  The functions
	- vfio_get_container_fd
	- vfio_get_group_fd
	- vfio_get_group_no
have been renamed to
	- rte_vfio_get_container_fd
	- rte_vfio_get_group_fd
	- rte_vfio_get_group_num

The old names are removed from the map file.

Fixes: 964b2f3bfb07 ("vfio: export some internal functions")

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
 lib/librte_eal/rte_eal_version.map | 3 ---
 1 file changed, 3 deletions(-)
  

Comments

Thomas Monjalon May 28, 2018, 1:21 a.m. UTC | #1
28/05/2018 00:23, Thomas Monjalon:
> The functions
> 	- vfio_get_container_fd
> 	- vfio_get_group_fd
> 	- vfio_get_group_no
> have been renamed to
> 	- rte_vfio_get_container_fd
> 	- rte_vfio_get_group_fd
> 	- rte_vfio_get_group_num
> 
> The old names are removed from the map file.
> 
> Fixes: 964b2f3bfb07 ("vfio: export some internal functions")
> 
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>

Applied
  

Patch

diff --git a/lib/librte_eal/rte_eal_version.map b/lib/librte_eal/rte_eal_version.map
index 7fadfea27..f7dd0e7bc 100644
--- a/lib/librte_eal/rte_eal_version.map
+++ b/lib/librte_eal/rte_eal_version.map
@@ -161,9 +161,6 @@  DPDK_17.05 {
 	rte_log_set_global_level;
 	rte_log_set_level;
 	rte_log_set_level_regexp;
-	vfio_get_container_fd;
-	vfio_get_group_fd;
-	vfio_get_group_no;
 
 } DPDK_17.02;