linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* net/netfilter/xt_TEE.c:48: undefined reference to `nf_dup_ipv6'
@ 2018-10-18 13:13 kbuild test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kbuild test robot @ 2018-10-18 13:13 UTC (permalink / raw)
  To: Máté Eckl; +Cc: kbuild-all, linux-kernel, Pablo Neira Ayuso

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

Hi Máté,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   fa520c47eaa15b9baa8ad66ac18da4a31679693b
commit: 5d400a4933e867dbc3706023c8ed55d364c233ed netfilter: Kconfig: Change select IPv6 dependencies
date:   3 months ago
config: x86_64-randconfig-h0-10181100 (attached as .config)
compiler: gcc-7 (Debian 7.3.0-1) 7.3.0
reproduce:
        git checkout 5d400a4933e867dbc3706023c8ed55d364c233ed
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   net/netfilter/xt_TEE.o: In function `tee_tg6':
>> net/netfilter/xt_TEE.c:48: undefined reference to `nf_dup_ipv6'

vim +48 net/netfilter/xt_TEE.c

e281b1989 Jan Engelhardt    2010-04-19  40  
5d400a493 Máté Eckl         2018-07-10  41  #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
e281b1989 Jan Engelhardt    2010-04-19  42  static unsigned int
4b560b447 Jan Engelhardt    2009-07-05  43  tee_tg6(struct sk_buff *skb, const struct xt_action_param *par)
e281b1989 Jan Engelhardt    2010-04-19  44  {
e281b1989 Jan Engelhardt    2010-04-19  45  	const struct xt_tee_tginfo *info = par->targinfo;
45efccdbe Eric Dumazet      2015-10-19  46  	int oif = info->priv ? info->priv->oif : 0;
e281b1989 Jan Engelhardt    2010-04-19  47  
613dbd957 Pablo Neira Ayuso 2016-11-03 @48  	nf_dup_ipv6(xt_net(par), skb, xt_hooknum(par), &info->gw.in6, oif);
e281b1989 Jan Engelhardt    2010-04-19  49  
e281b1989 Jan Engelhardt    2010-04-19  50  	return XT_CONTINUE;
e281b1989 Jan Engelhardt    2010-04-19  51  }
dfd56b8b3 Eric Dumazet      2011-12-10  52  #endif
e281b1989 Jan Engelhardt    2010-04-19  53  

:::::: The code at line 48 was first introduced by commit
:::::: 613dbd95723aee7abd16860745691b6c7bda20dc netfilter: x_tables: move hook state into xt_action_param structure

:::::: TO: Pablo Neira Ayuso <pablo@netfilter.org>
:::::: CC: Pablo Neira Ayuso <pablo@netfilter.org>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

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

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

* net/netfilter/xt_TEE.c:48: undefined reference to `nf_dup_ipv6'
@ 2018-09-05  8:48 kbuild test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kbuild test robot @ 2018-09-05  8:48 UTC (permalink / raw)
  To: Máté Eckl; +Cc: kbuild-all, linux-kernel, Pablo Neira Ayuso

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   28619527b8a712590c93d0a9e24b4425b9376a8c
commit: 5d400a4933e867dbc3706023c8ed55d364c233ed netfilter: Kconfig: Change select IPv6 dependencies
date:   7 weeks ago
config: x86_64-randconfig-g0-09051253 (attached as .config)
compiler: gcc-4.9 (Debian 4.9.4-2) 4.9.4
reproduce:
        git checkout 5d400a4933e867dbc3706023c8ed55d364c233ed
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   net/netfilter/xt_TEE.o: In function `tee_tg6':
>> net/netfilter/xt_TEE.c:48: undefined reference to `nf_dup_ipv6'

vim +48 net/netfilter/xt_TEE.c

e281b1989 Jan Engelhardt    2010-04-19  40  
5d400a493 Máté Eckl         2018-07-10  41  #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
e281b1989 Jan Engelhardt    2010-04-19  42  static unsigned int
4b560b447 Jan Engelhardt    2009-07-05  43  tee_tg6(struct sk_buff *skb, const struct xt_action_param *par)
e281b1989 Jan Engelhardt    2010-04-19  44  {
e281b1989 Jan Engelhardt    2010-04-19  45  	const struct xt_tee_tginfo *info = par->targinfo;
45efccdbe Eric Dumazet      2015-10-19  46  	int oif = info->priv ? info->priv->oif : 0;
e281b1989 Jan Engelhardt    2010-04-19  47  
613dbd957 Pablo Neira Ayuso 2016-11-03 @48  	nf_dup_ipv6(xt_net(par), skb, xt_hooknum(par), &info->gw.in6, oif);
e281b1989 Jan Engelhardt    2010-04-19  49  
e281b1989 Jan Engelhardt    2010-04-19  50  	return XT_CONTINUE;
e281b1989 Jan Engelhardt    2010-04-19  51  }
dfd56b8b3 Eric Dumazet      2011-12-10  52  #endif
e281b1989 Jan Engelhardt    2010-04-19  53  

:::::: The code at line 48 was first introduced by commit
:::::: 613dbd95723aee7abd16860745691b6c7bda20dc netfilter: x_tables: move hook state into xt_action_param structure

:::::: TO: Pablo Neira Ayuso <pablo@netfilter.org>
:::::: CC: Pablo Neira Ayuso <pablo@netfilter.org>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

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

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

end of thread, other threads:[~2018-10-18 13:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-18 13:13 net/netfilter/xt_TEE.c:48: undefined reference to `nf_dup_ipv6' kbuild test robot
  -- strict thread matches above, loose matches on Subject: below --
2018-09-05  8:48 kbuild test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).