When building on FreeBSD, errors are reported in the base code by the lock checker (-Wthread-safety). For example:
../drivers/net/intel/ixgbe/base/ixgbe_osdep.c:42:1: error: mutex 'lock->mutex' is still held at the end of function [-Werror,-Wthread-safety-analysis] 42 | } | ^ These errors are due to the checker not recognising the lock wrapper functions. We can avoid these errors by converting these functions into macros. Fixes: 30b19d1b5c43 ("net/ixgbe/base: add definitions for E610") Cc: sta...@dpdk.org Signed-off-by: Bruce Richardson <bruce.richard...@intel.com> --- drivers/net/intel/ixgbe/base/ixgbe_osdep.c | 20 -------------------- drivers/net/intel/ixgbe/base/ixgbe_osdep.h | 8 ++++---- 2 files changed, 4 insertions(+), 24 deletions(-) diff --git a/drivers/net/intel/ixgbe/base/ixgbe_osdep.c b/drivers/net/intel/ixgbe/base/ixgbe_osdep.c index d3d7e8e116..778f74e644 100644 --- a/drivers/net/intel/ixgbe/base/ixgbe_osdep.c +++ b/drivers/net/intel/ixgbe/base/ixgbe_osdep.c @@ -25,23 +25,3 @@ ixgbe_free(struct ixgbe_hw __rte_unused *hw, void *addr) { free(addr); } - -void ixgbe_init_lock(struct ixgbe_lock *lock) -{ - pthread_mutex_init(&lock->mutex, NULL); -} - -void ixgbe_destroy_lock(struct ixgbe_lock *lock) -{ - pthread_mutex_destroy(&lock->mutex); -} - -void ixgbe_acquire_lock(struct ixgbe_lock *lock) -{ - pthread_mutex_lock(&lock->mutex); -} - -void ixgbe_release_lock(struct ixgbe_lock *lock) -{ - pthread_mutex_unlock(&lock->mutex); -} diff --git a/drivers/net/intel/ixgbe/base/ixgbe_osdep.h b/drivers/net/intel/ixgbe/base/ixgbe_osdep.h index 398c38bffd..6e35991f49 100644 --- a/drivers/net/intel/ixgbe/base/ixgbe_osdep.h +++ b/drivers/net/intel/ixgbe/base/ixgbe_osdep.h @@ -167,9 +167,9 @@ void *ixgbe_calloc(struct ixgbe_hw *hw, size_t count, size_t size); void *ixgbe_malloc(struct ixgbe_hw *hw, size_t size); void ixgbe_free(struct ixgbe_hw *hw, void *addr); -void ixgbe_init_lock(struct ixgbe_lock *lock); -void ixgbe_destroy_lock(struct ixgbe_lock *lock); -void ixgbe_acquire_lock(struct ixgbe_lock *lock); -void ixgbe_release_lock(struct ixgbe_lock *lock); +#define ixgbe_init_lock(lock) pthread_mutex_init(&(lock)->mutex, NULL) +#define ixgbe_destroy_lock(lock) pthread_mutex_destroy(&(lock)->mutex) +#define ixgbe_acquire_lock(lock) pthread_mutex_lock(&(lock)->mutex) +#define ixgbe_release_lock(lock) pthread_mutex_unlock(&(lock)->mutex) #endif /* _IXGBE_OS_H_ */ -- 2.45.2