common/mlx5: fix link with ibverbs glue dlopen option
authorThomas Monjalon <thomas@monjalon.net>
Mon, 13 Jul 2020 15:37:10 +0000 (17:37 +0200)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 21 Jul 2020 13:44:36 +0000 (15:44 +0200)
commitb458bd4cf7dc1c2f881102fbfcd503ae6e594bd8
tree87dd3a1646b523ea95ee78cea0519c7716cbb09e
parent4237be2b9e250d431d465b81a0abbe5fb559d2c8
common/mlx5: fix link with ibverbs glue dlopen option

In case the ibverbs glue is a separate library to dlopen,
the PMD library must allocate a glue structure to be filled by dlopen.

The glue management was in mlx5_common.c and moved to mlx5_common_os.c,
but the variable allocation was not removed from the original file.
The consequence was a link failure, if ibverbs dlopen option is enabled,
because of the redefinition of the variable (with GCC 10):
multiple definition of 'mlx5_glue'

The original definition is removed to keep only the one moved
in the Linux sub-directory.

Fixes: 79aa430721b1 ("common/mlx5: split common file under Linux directory")
Cc: stable@dpdk.org
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Matan Azrad <matan@mellanox.com>
drivers/common/mlx5/mlx5_common.c