From 2a32b54a5774b1015ae155a58a363b1f56f8fc0a Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Wed, 8 May 2024 15:52:00 +0100 Subject: [PATCH] ofed: don't expose symbols twice ibv_init_wq and ibv_cleanup_wq are made visible with the default_symver which puts them in the IBVERBS_1.1 ABI. Don't try to expose them as IBVERBS_PRIVATE_14 symbols as GNU ld complains with --no-undefined-symbol. Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D45090 --- contrib/ofed/libibverbs/libibverbs.map | 2 -- 1 file changed, 2 deletions(-) diff --git a/contrib/ofed/libibverbs/libibverbs.map b/contrib/ofed/libibverbs/libibverbs.map index d94743389f4..52b7f2efd49 100644 --- a/contrib/ofed/libibverbs/libibverbs.map +++ b/contrib/ofed/libibverbs/libibverbs.map @@ -137,6 +137,4 @@ IBVERBS_PRIVATE_14 { verbs_register_driver; verbs_init_cq; verbs_cleanup_cq; - ibv_init_wq; - ibv_cleanup_wq; };