* v3.18-stable-queue build failures
@ 2015-04-26 10:30 Guenter Roeck
2015-04-27 3:17 ` Sasha Levin
0 siblings, 1 reply; 7+ messages in thread
From: Guenter Roeck @ 2015-04-26 10:30 UTC (permalink / raw)
To: stable; +Cc: Sasha Levin
Hi,
almost all builds in v3.18-stable-queue fail with
In file included from net/socket.c:74:0:
include/linux/if_vlan.h: In function 'vlan_put_tag':
include/linux/if_vlan.h:409:3: error: implicit declaration of function '__vlan_put_tag' [-Werror=implicit-function-declaration]
include/linux/if_vlan.h:409:3: warning: return makes pointer from integer without a cast [enabled by default]
groeck@server:~/src/linux-stable$ git grep __vlan_put_tag
include/linux/if_vlan.h: return __vlan_put_tag(skb, vlan_proto, vlan_tci);
It appears that 'vlan: rename __vlan_put_tag to vlan_insert_tag_set_proto' was incomplete
for v3.18.
Guenter
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: v3.18-stable-queue build failures
2015-04-26 10:30 Guenter Roeck
@ 2015-04-27 3:17 ` Sasha Levin
2015-04-27 15:36 ` Guenter Roeck
0 siblings, 1 reply; 7+ messages in thread
From: Sasha Levin @ 2015-04-27 3:17 UTC (permalink / raw)
To: Guenter Roeck, stable
On 04/26/2015 06:30 AM, Guenter Roeck wrote:
> Hi,
>
> almost all builds in v3.18-stable-queue fail with
>
> In file included from net/socket.c:74:0:
> include/linux/if_vlan.h: In function 'vlan_put_tag':
> include/linux/if_vlan.h:409:3: error: implicit declaration of function '__vlan_put_tag' [-Werror=implicit-function-declaration]
> include/linux/if_vlan.h:409:3: warning: return makes pointer from integer without a cast [enabled by default]
>
> groeck@server:~/src/linux-stable$ git grep __vlan_put_tag
> include/linux/if_vlan.h: return __vlan_put_tag(skb, vlan_proto, vlan_tci);
>
> It appears that 'vlan: rename __vlan_put_tag to vlan_insert_tag_set_proto' was incomplete
> for v3.18.
Thanks!
This was actually missing b4bef1b575 ("vlan: kill vlan_put_tag helper").
Fixed and re-pushed.
Thanks,
Sasha
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: v3.18-stable-queue build failures
2015-04-27 3:17 ` Sasha Levin
@ 2015-04-27 15:36 ` Guenter Roeck
2015-04-28 1:37 ` Sasha Levin
0 siblings, 1 reply; 7+ messages in thread
From: Guenter Roeck @ 2015-04-27 15:36 UTC (permalink / raw)
To: Sasha Levin; +Cc: stable
On Sun, Apr 26, 2015 at 11:17:46PM -0400, Sasha Levin wrote:
> On 04/26/2015 06:30 AM, Guenter Roeck wrote:
> > Hi,
> >
> > almost all builds in v3.18-stable-queue fail with
> >
> > In file included from net/socket.c:74:0:
> > include/linux/if_vlan.h: In function 'vlan_put_tag':
> > include/linux/if_vlan.h:409:3: error: implicit declaration of function '__vlan_put_tag' [-Werror=implicit-function-declaration]
> > include/linux/if_vlan.h:409:3: warning: return makes pointer from integer without a cast [enabled by default]
> >
> > groeck@server:~/src/linux-stable$ git grep __vlan_put_tag
> > include/linux/if_vlan.h: return __vlan_put_tag(skb, vlan_proto, vlan_tci);
> >
> > It appears that 'vlan: rename __vlan_put_tag to vlan_insert_tag_set_proto' was incomplete
> > for v3.18.
>
> Thanks!
>
> This was actually missing b4bef1b575 ("vlan: kill vlan_put_tag helper").
>
> Fixed and re-pushed.
>
Hi Sasha,
much better now but there are still several build failures.
drivers/net/ethernet/broadcom/bnx2x/bnx2x.h: In function 'bnx2x_fp_busy_poll_init':
drivers/net/ethernet/broadcom/bnx2x/bnx2x.h:625:2: error: implicit declaration of function 'WRITE_ONCE'
---
drivers/net/vxlan.c: In function 'vxlan_xmit_skb':
drivers/net/vxlan.c:1646:2: error: too few arguments to function 'iptunnel_handle_offloads'
include/net/ip_tunnels.h:181:17: note: declared here
Guenter
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: v3.18-stable-queue build failures
2015-04-27 15:36 ` Guenter Roeck
@ 2015-04-28 1:37 ` Sasha Levin
2015-04-28 2:21 ` Guenter Roeck
0 siblings, 1 reply; 7+ messages in thread
From: Sasha Levin @ 2015-04-28 1:37 UTC (permalink / raw)
To: Guenter Roeck; +Cc: stable
On 04/27/2015 11:36 AM, Guenter Roeck wrote:
> On Sun, Apr 26, 2015 at 11:17:46PM -0400, Sasha Levin wrote:
>> On 04/26/2015 06:30 AM, Guenter Roeck wrote:
>>> Hi,
>>>
>>> almost all builds in v3.18-stable-queue fail with
>>>
>>> In file included from net/socket.c:74:0:
>>> include/linux/if_vlan.h: In function 'vlan_put_tag':
>>> include/linux/if_vlan.h:409:3: error: implicit declaration of function '__vlan_put_tag' [-Werror=implicit-function-declaration]
>>> include/linux/if_vlan.h:409:3: warning: return makes pointer from integer without a cast [enabled by default]
>>>
>>> groeck@server:~/src/linux-stable$ git grep __vlan_put_tag
>>> include/linux/if_vlan.h: return __vlan_put_tag(skb, vlan_proto, vlan_tci);
>>>
>>> It appears that 'vlan: rename __vlan_put_tag to vlan_insert_tag_set_proto' was incomplete
>>> for v3.18.
>>
>> Thanks!
>>
>> This was actually missing b4bef1b575 ("vlan: kill vlan_put_tag helper").
>>
>> Fixed and re-pushed.
>>
> Hi Sasha,
>
> much better now but there are still several build failures.
Thanks again!
> drivers/net/ethernet/broadcom/bnx2x/bnx2x.h: In function 'bnx2x_fp_busy_poll_init':
> drivers/net/ethernet/broadcom/bnx2x/bnx2x.h:625:2: error: implicit declaration of function 'WRITE_ONCE'
That's a missing "kernel: Change ASSIGN_ONCE(val, x) to WRITE_ONCE(x, val)".
> drivers/net/vxlan.c: In function 'vxlan_xmit_skb':
> drivers/net/vxlan.c:1646:2: error: too few arguments to function 'iptunnel_handle_offloads'
> include/net/ip_tunnels.h:181:17: note: declared here
And this is just a bad backport.
Fixed both and repushed.
Thanks,
Sasha
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: v3.18-stable-queue build failures
2015-04-28 1:37 ` Sasha Levin
@ 2015-04-28 2:21 ` Guenter Roeck
0 siblings, 0 replies; 7+ messages in thread
From: Guenter Roeck @ 2015-04-28 2:21 UTC (permalink / raw)
To: Sasha Levin; +Cc: stable
On 04/27/2015 06:37 PM, Sasha Levin wrote:
>> much better now but there are still several build failures.
>
> Thanks again!
>
>> drivers/net/ethernet/broadcom/bnx2x/bnx2x.h: In function 'bnx2x_fp_busy_poll_init':
>> drivers/net/ethernet/broadcom/bnx2x/bnx2x.h:625:2: error: implicit declaration of function 'WRITE_ONCE'
>
> That's a missing "kernel: Change ASSIGN_ONCE(val, x) to WRITE_ONCE(x, val)".
>
>> drivers/net/vxlan.c: In function 'vxlan_xmit_skb':
>> drivers/net/vxlan.c:1646:2: error: too few arguments to function 'iptunnel_handle_offloads'
>> include/net/ip_tunnels.h:181:17: note: declared here
>
> And this is just a bad backport.
>
> Fixed both and repushed.
>
Yes, all is perfect now.
Guenter
^ permalink raw reply [flat|nested] 7+ messages in thread
* v3.18-stable-queue build failures
@ 2016-01-22 14:21 Guenter Roeck
2016-01-22 16:35 ` Guenter Roeck
0 siblings, 1 reply; 7+ messages in thread
From: Guenter Roeck @ 2016-01-22 14:21 UTC (permalink / raw)
To: stable, Sasha Levin
net/socket.c: In function 'SYSC_recvfrom': net/socket.c:1866:5: error: 'struct msghdr' has no member named 'msg_iocb' make[1]: *** [net/socket.o] Error 1 Affects all builds with networking enabled. Guenter
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: v3.18-stable-queue build failures
2016-01-22 14:21 v3.18-stable-queue build failures Guenter Roeck
@ 2016-01-22 16:35 ` Guenter Roeck
0 siblings, 0 replies; 7+ messages in thread
From: Guenter Roeck @ 2016-01-22 16:35 UTC (permalink / raw)
To: stable, Sasha Levin
On 01/22/2016 06:21 AM, Guenter Roeck wrote:
> net/socket.c: In function 'SYSC_recvfrom': net/socket.c:1866:5: error: 'struct msghdr' has no member named 'msg_iocb' make[1]: *** [net/socket.o] Error 1 Affects all builds with networking enabled. Guenter
>
more:
sound/pci/hda/patch_hdmi.c: In function 'hdmi_setup_audio_infoframe': sound/pci/hda/patch_hdmi.c:1130:6: error: 'struct hda_codec' has no member named 'core' sound/pci/hda/patch_hdmi.c: In function 'hdmi_setup_stream': sound/pci/hda/patch_hdmi.c:1313:6: error: 'struct hda_codec' has no member named 'core'
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-01-22 16:35 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-22 14:21 v3.18-stable-queue build failures Guenter Roeck
2016-01-22 16:35 ` Guenter Roeck
-- strict thread matches above, loose matches on Subject: below --
2015-04-26 10:30 Guenter Roeck
2015-04-27 3:17 ` Sasha Levin
2015-04-27 15:36 ` Guenter Roeck
2015-04-28 1:37 ` Sasha Levin
2015-04-28 2:21 ` Guenter Roeck
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).