mempool: fix mlx driver loading

The function rte_mempool_obj_iter used in mlx drivers
was not exported. So the driver loading was failing:

EAL: open shared lib librte_pmd_mlx4.so
EAL: x86_64-native-linuxapp-gcc/lib/librte_pmd_mlx4.so:
	undefined symbol: rte_mempool_obj_iter

Fixes: 9d41beed24b0 ("lib: provide initial versioning")

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
Thomas Monjalon 2015-12-04 17:44:51 +01:00
parent 5142945b3a
commit cdb6d34b9f
2 changed files with 6 additions and 0 deletions

View File

@ -197,6 +197,11 @@ Drivers
Fixed the issue of not freeing memzone in the call to free the memory for
adminq DMA.
* **mlx: Fixed driver loading.**
The mlx drivers were unable to load when built as a shared library,
due to a missing symbol in mempool library.
* **vhost: Fixed Qemu shutdown.**
Fixed issue with libvirt ``virsh destroy`` not killing the VM.

View File

@ -9,6 +9,7 @@ DPDK_2.0 {
rte_mempool_dump;
rte_mempool_list_dump;
rte_mempool_lookup;
rte_mempool_obj_iter;
rte_mempool_walk;
rte_mempool_xmem_create;
rte_mempool_xmem_size;