diff options
author | 2021-10-16 10:13:27 +0200 | |
---|---|---|
committer | 2021-10-17 15:49:08 +0200 | |
commit | ffdd33dd9c12a8c263f78d778066709ef94671f9 (patch) | |
tree | 2ca3b55d38f3ad44fbee4eec33ea37cef403ce2c /net/core/dev.c | |
parent | netfilter: ipvs: merge ipv4 + ipv6 icmp reply handlers (diff) | |
download | wireguard-linux-ffdd33dd9c12a8c263f78d778066709ef94671f9.tar.xz wireguard-linux-ffdd33dd9c12a8c263f78d778066709ef94671f9.zip |
netfilter: core: Fix clang warnings about unused static inlines
Unlike gcc, clang warns about unused static inlines that are not in an
include file:
net/netfilter/core.c:344:20: error: unused function 'nf_ingress_hook' [-Werror,-Wunused-function]
static inline bool nf_ingress_hook(const struct nf_hook_ops *reg, int pf)
^
net/netfilter/core.c:353:20: error: unused function 'nf_egress_hook' [-Werror,-Wunused-function]
static inline bool nf_egress_hook(const struct nf_hook_ops *reg, int pf)
^
According to commit 6863f5643dd7 ("kbuild: allow Clang to find unused
static inline functions for W=1 build"), the proper resolution is to
mark the affected functions as __maybe_unused. An alternative approach
would be to move them to include/linux/netfilter_netdev.h, but since
Pablo didn't do that in commit ddcfa710d40b ("netfilter: add
nf_ingress_hook() helper function"), I'm guessing __maybe_unused is
preferred.
This fixes both the warning introduced by Pablo in v5.10 as well as the
one recently introduced by myself with commit 42df6e1d221d ("netfilter:
Introduce egress hook").
Fixes: ddcfa710d40b ("netfilter: add nf_ingress_hook() helper function")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Lukas Wunner <lukas@wunner.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/core/dev.c')
0 files changed, 0 insertions, 0 deletions