[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <202304150840.hkUoyFNG-lkp@intel.com>
Date: Sat, 15 Apr 2023 08:43:04 +0800
From: kernel test robot <lkp@...el.com>
To: Jakub Kicinski <kuba@...nel.org>, davem@...emloft.net
Cc: llvm@...ts.linux.dev, oe-kbuild-all@...ts.linux.dev,
netdev@...r.kernel.org, edumazet@...gle.com, pabeni@...hat.com,
Jakub Kicinski <kuba@...nel.org>, pablo@...filter.org,
fw@...len.de
Subject: Re: [PATCH net-next 5/5] net: skbuff: hide nf_trace and ipvs_property
Hi Jakub,
kernel test robot noticed the following build errors:
[auto build test ERROR on net-next/main]
url: https://github.com/intel-lab-lkp/linux/commits/Jakub-Kicinski/net-skbuff-hide-wifi_acked-when-CONFIG_WIRELESS-not-set/20230415-000750
patch link: https://lore.kernel.org/r/20230414160105.172125-6-kuba%40kernel.org
patch subject: [PATCH net-next 5/5] net: skbuff: hide nf_trace and ipvs_property
config: i386-randconfig-a005-20230410 (https://download.01.org/0day-ci/archive/20230415/202304150840.hkUoyFNG-lkp@intel.com/config)
compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1)
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://github.com/intel-lab-lkp/linux/commit/e2a92e33e41fe773b7c4a32a75db87340855387a
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Jakub-Kicinski/net-skbuff-hide-wifi_acked-when-CONFIG_WIRELESS-not-set/20230415-000750
git checkout e2a92e33e41fe773b7c4a32a75db87340855387a
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash net/netfilter/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@...el.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202304150840.hkUoyFNG-lkp@intel.com/
All errors (new ones prefixed by >>):
>> net/netfilter/nf_tables_core.c:64:30: error: no member named 'nf_trace' in 'struct sk_buff'
info->nf_trace = pkt->skb->nf_trace;
~~~~~~~~ ^
net/netfilter/nf_tables_core.c:75:31: error: no member named 'nf_trace' in 'struct sk_buff'
info->nf_trace = pkt->skb->nf_trace;
~~~~~~~~ ^
net/netfilter/nf_tables_core.c:132:37: error: no member named 'nf_trace' in 'struct sk_buff'
info->nf_trace = info->pkt->skb->nf_trace;
~~~~~~~~~~~~~~ ^
3 errors generated.
--
>> net/netfilter/nf_tables_trace.c:284:29: error: no member named 'nf_trace' in 'struct sk_buff'
info->nf_trace = pkt->skb->nf_trace;
~~~~~~~~ ^
1 error generated.
--
>> net/netfilter/nft_meta.c:446:8: error: no member named 'nf_trace' in 'struct sk_buff'
skb->nf_trace = !!value8;
~~~ ^
1 error generated.
vim +64 net/netfilter/nf_tables_core.c
01ef16c2dd2e9a Patrick McHardy 2015-03-03 56
399a14ec7993d6 Florian Westphal 2022-08-04 57 static inline void nft_trace_packet(const struct nft_pktinfo *pkt,
399a14ec7993d6 Florian Westphal 2022-08-04 58 struct nft_traceinfo *info,
01ef16c2dd2e9a Patrick McHardy 2015-03-03 59 const struct nft_chain *chain,
2c865a8a28a10e Pablo Neira Ayuso 2022-01-09 60 const struct nft_rule_dp *rule,
33d5a7b14bfd02 Florian Westphal 2015-11-28 61 enum nft_trace_types type)
01ef16c2dd2e9a Patrick McHardy 2015-03-03 62 {
e639f7ab079b52 Florian Westphal 2015-11-28 63 if (static_branch_unlikely(&nft_trace_enabled)) {
e34b9ed96ce3b0 Florian Westphal 2022-06-22 @64 info->nf_trace = pkt->skb->nf_trace;
33d5a7b14bfd02 Florian Westphal 2015-11-28 65 info->rule = rule;
e65eebec9c67df Florian Westphal 2018-05-11 66 __nft_trace_packet(info, chain, type);
33d5a7b14bfd02 Florian Westphal 2015-11-28 67 }
01ef16c2dd2e9a Patrick McHardy 2015-03-03 68 }
01ef16c2dd2e9a Patrick McHardy 2015-03-03 69
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
Powered by blists - more mailing lists