Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

RDMA/netlink: Add __maybe_unused to static inline in C file

Like other commits in the tree add __maybe_unused to a static inline in a
C file because some clang compilers will complain about unused code:

>> drivers/infiniband/core/nldev.c:2543:1: warning: unused function '__chk_RDMA_NL_NLDEV'
MODULE_ALIAS_RDMA_NETLINK(RDMA_NL_NLDEV, 5);
^

Fixes: e3bf14bdc17a ("rdma: Autoload netlink client modules")
Link: https://lore.kernel.org/r/4a8101919b765e01d7fde6f27fd572c958deeb4a.1636267207.git.leonro@nvidia.com
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>

authored by

Leon Romanovsky and committed by
Jason Gunthorpe
83dde749 fa55b7dc

+1 -1
+1 -1
include/rdma/rdma_netlink.h
··· 30 30 * constant as well and the compiler checks they are the same. 31 31 */ 32 32 #define MODULE_ALIAS_RDMA_NETLINK(_index, _val) \ 33 - static inline void __chk_##_index(void) \ 33 + static inline void __maybe_unused __chk_##_index(void) \ 34 34 { \ 35 35 BUILD_BUG_ON(_index != _val); \ 36 36 } \