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

net/smc: fix -Wmissing-prototypes warning when CONFIG_SYSCTL not set

when CONFIG_SYSCTL not set, smc_sysctl_net_init/exit
need to be static inline to avoid missing-prototypes
if compile with W=1.

Since __net_exit has noinline annotation when CONFIG_NET_NS
not set, it should not be used with static inline.
So remove the __net_init/exit when CONFIG_SYSCTL not set.

Fixes: 7de8eb0d9039 ("net/smc: fix compile warning for smc_sysctl")
Signed-off-by: Dust Li <dust.li@linux.alibaba.com>
Link: https://lore.kernel.org/r/20220309033051.41893-1-dust.li@linux.alibaba.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Dust Li and committed by
Jakub Kicinski
d9f50991 c01e6059

+2 -2
+2 -2
net/smc/smc_sysctl.h
··· 20 20 21 21 #else 22 22 23 - int __net_init smc_sysctl_net_init(struct net *net) 23 + static inline int smc_sysctl_net_init(struct net *net) 24 24 { 25 25 net->smc.sysctl_autocorking_size = SMC_AUTOCORKING_DEFAULT_SIZE; 26 26 return 0; 27 27 } 28 28 29 - void __net_exit smc_sysctl_net_exit(struct net *net) { } 29 + static inline void smc_sysctl_net_exit(struct net *net) { } 30 30 31 31 #endif /* CONFIG_SYSCTL */ 32 32