netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* stable-rc 4.14 : net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared
@ 2019-11-04 13:14 Naresh Kamboju
  2019-11-04 13:32 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Naresh Kamboju @ 2019-11-04 13:14 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Sasha Levin, linux- stable
  Cc: kuznet, yoshfuji, lkft-triage, David S. Miller, open list, Netdev

stable-rc 4.14 for architectures arm64, arm, x86_64 and i386 builds
failed due to below error,

net/ipv6/addrconf.c: In function 'addrconf_init':
net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared
(first use in this function); did you mean 'alloc_netdev'?
  bdev = ipv6_add_dev(blackhole_netdev);
                      ^~~~~~~~~~~~~~~~
                      alloc_netdev
net/ipv6/addrconf.c:6593:22: note: each undeclared identifier is
reported only once for each function it appears in
net/ipv6/addrconf.c: In function 'addrconf_cleanup':
net/ipv6/addrconf.c:6667:18: error: 'blackhole_netdev' undeclared
(first use in this function); did you mean 'alloc_netdev'?
  addrconf_ifdown(blackhole_netdev, 2);
                  ^~~~~~~~~~~~~~~~
                  alloc_netdev

Build link,
https://ci.linaro.org/view/lkft/job/openembedded-lkft-linux-stable-rc-4.14/DISTRO=lkft,MACHINE=intel-corei7-64,label=docker-lkft/632/consoleText

- Naresh

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

* Re: stable-rc 4.14 : net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared
  2019-11-04 13:14 stable-rc 4.14 : net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared Naresh Kamboju
@ 2019-11-04 13:32 ` Greg Kroah-Hartman
  2019-11-04 17:13   ` Sasha Levin
  0 siblings, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2019-11-04 13:32 UTC (permalink / raw)
  To: Naresh Kamboju
  Cc: Sasha Levin, linux- stable, kuznet, yoshfuji, lkft-triage,
	David S. Miller, open list, Netdev

On Mon, Nov 04, 2019 at 06:44:39PM +0530, Naresh Kamboju wrote:
> stable-rc 4.14 for architectures arm64, arm, x86_64 and i386 builds
> failed due to below error,
> 
> net/ipv6/addrconf.c: In function 'addrconf_init':
> net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared
> (first use in this function); did you mean 'alloc_netdev'?
>   bdev = ipv6_add_dev(blackhole_netdev);
>                       ^~~~~~~~~~~~~~~~
>                       alloc_netdev
> net/ipv6/addrconf.c:6593:22: note: each undeclared identifier is
> reported only once for each function it appears in
> net/ipv6/addrconf.c: In function 'addrconf_cleanup':
> net/ipv6/addrconf.c:6667:18: error: 'blackhole_netdev' undeclared
> (first use in this function); did you mean 'alloc_netdev'?
>   addrconf_ifdown(blackhole_netdev, 2);
>                   ^~~~~~~~~~~~~~~~
>                   alloc_netdev
> 
> Build link,
> https://ci.linaro.org/view/lkft/job/openembedded-lkft-linux-stable-rc-4.14/DISTRO=lkft,MACHINE=intel-corei7-64,label=docker-lkft/632/consoleText
> 

Ick, my fault, will go fix this, sorry about that.

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

* Re: stable-rc 4.14 : net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared
  2019-11-04 13:32 ` Greg Kroah-Hartman
@ 2019-11-04 17:13   ` Sasha Levin
  2019-11-04 20:32     ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Sasha Levin @ 2019-11-04 17:13 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Naresh Kamboju, linux- stable, kuznet, yoshfuji, lkft-triage,
	David S. Miller, open list, Netdev

On Mon, Nov 04, 2019 at 02:32:58PM +0100, Greg Kroah-Hartman wrote:
>On Mon, Nov 04, 2019 at 06:44:39PM +0530, Naresh Kamboju wrote:
>> stable-rc 4.14 for architectures arm64, arm, x86_64 and i386 builds
>> failed due to below error,
>>
>> net/ipv6/addrconf.c: In function 'addrconf_init':
>> net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared
>> (first use in this function); did you mean 'alloc_netdev'?
>>   bdev = ipv6_add_dev(blackhole_netdev);
>>                       ^~~~~~~~~~~~~~~~
>>                       alloc_netdev
>> net/ipv6/addrconf.c:6593:22: note: each undeclared identifier is
>> reported only once for each function it appears in
>> net/ipv6/addrconf.c: In function 'addrconf_cleanup':
>> net/ipv6/addrconf.c:6667:18: error: 'blackhole_netdev' undeclared
>> (first use in this function); did you mean 'alloc_netdev'?
>>   addrconf_ifdown(blackhole_netdev, 2);
>>                   ^~~~~~~~~~~~~~~~
>>                   alloc_netdev
>>
>> Build link,
>> https://ci.linaro.org/view/lkft/job/openembedded-lkft-linux-stable-rc-4.14/DISTRO=lkft,MACHINE=intel-corei7-64,label=docker-lkft/632/consoleText
>>
>
>Ick, my fault, will go fix this, sorry about that.

I've dropped this patch from 5.3 too, it was reverted upstream.

-- 
Thanks,
Sasha

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

* Re: stable-rc 4.14 : net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared
  2019-11-04 17:13   ` Sasha Levin
@ 2019-11-04 20:32     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2019-11-04 20:32 UTC (permalink / raw)
  To: Sasha Levin
  Cc: Naresh Kamboju, linux- stable, kuznet, yoshfuji, lkft-triage,
	David S. Miller, open list, Netdev

On Mon, Nov 04, 2019 at 12:13:45PM -0500, Sasha Levin wrote:
> On Mon, Nov 04, 2019 at 02:32:58PM +0100, Greg Kroah-Hartman wrote:
> > On Mon, Nov 04, 2019 at 06:44:39PM +0530, Naresh Kamboju wrote:
> > > stable-rc 4.14 for architectures arm64, arm, x86_64 and i386 builds
> > > failed due to below error,
> > > 
> > > net/ipv6/addrconf.c: In function 'addrconf_init':
> > > net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared
> > > (first use in this function); did you mean 'alloc_netdev'?
> > >   bdev = ipv6_add_dev(blackhole_netdev);
> > >                       ^~~~~~~~~~~~~~~~
> > >                       alloc_netdev
> > > net/ipv6/addrconf.c:6593:22: note: each undeclared identifier is
> > > reported only once for each function it appears in
> > > net/ipv6/addrconf.c: In function 'addrconf_cleanup':
> > > net/ipv6/addrconf.c:6667:18: error: 'blackhole_netdev' undeclared
> > > (first use in this function); did you mean 'alloc_netdev'?
> > >   addrconf_ifdown(blackhole_netdev, 2);
> > >                   ^~~~~~~~~~~~~~~~
> > >                   alloc_netdev
> > > 
> > > Build link,
> > > https://ci.linaro.org/view/lkft/job/openembedded-lkft-linux-stable-rc-4.14/DISTRO=lkft,MACHINE=intel-corei7-64,label=docker-lkft/632/consoleText
> > > 
> > 
> > Ick, my fault, will go fix this, sorry about that.
> 
> I've dropped this patch from 5.3 too, it was reverted upstream.

Ah, missed that, thanks!

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

end of thread, other threads:[~2019-11-04 20:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-04 13:14 stable-rc 4.14 : net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared Naresh Kamboju
2019-11-04 13:32 ` Greg Kroah-Hartman
2019-11-04 17:13   ` Sasha Levin
2019-11-04 20:32     ` Greg Kroah-Hartman

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).