linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [linux-next:master 7868/8410] net/netfilter/core.c:353:20: error: unused function 'nf_egress_hook'
@ 2021-10-15 22:12 kernel test robot
  2021-10-16  8:13 ` [PATCH nf-next] netfilter: core: Fix clang warnings about unused static inlines Lukas Wunner
  0 siblings, 1 reply; 3+ messages in thread
From: kernel test robot @ 2021-10-15 22:12 UTC (permalink / raw)
  To: Lukas Wunner
  Cc: llvm, kbuild-all, Linux Memory Management List, Pablo Neira Ayuso

[-- Attachment #1: Type: text/plain, Size: 2291 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   7c832d2f9b959e3181370c8b0dacaf9efe13fc05
commit: 42df6e1d221dddc0f2acf2be37e68d553ad65f96 [7868/8410] netfilter: Introduce egress hook
config: x86_64-buildonly-randconfig-r003-20211015 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 6069a6a5049497a32a50a49661c2f4169078bdba)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=42df6e1d221dddc0f2acf2be37e68d553ad65f96
        git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
        git fetch --no-tags linux-next master
        git checkout 42df6e1d221dddc0f2acf2be37e68d553ad65f96
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   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)
                      ^
   2 errors generated.


vim +/nf_egress_hook +353 net/netfilter/core.c

   343	
 > 344	static inline bool nf_ingress_hook(const struct nf_hook_ops *reg, int pf)
   345	{
   346		if ((pf == NFPROTO_NETDEV && reg->hooknum == NF_NETDEV_INGRESS) ||
   347		    (pf == NFPROTO_INET && reg->hooknum == NF_INET_INGRESS))
   348			return true;
   349	
   350		return false;
   351	}
   352	
 > 353	static inline bool nf_egress_hook(const struct nf_hook_ops *reg, int pf)
   354	{
   355		return pf == NFPROTO_NETDEV && reg->hooknum == NF_NETDEV_EGRESS;
   356	}
   357	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 45907 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-10-17 13:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-15 22:12 [linux-next:master 7868/8410] net/netfilter/core.c:353:20: error: unused function 'nf_egress_hook' kernel test robot
2021-10-16  8:13 ` [PATCH nf-next] netfilter: core: Fix clang warnings about unused static inlines Lukas Wunner
2021-10-17 13:48   ` Pablo Neira Ayuso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox