All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16)
       [not found] <5918603a.118d1c0a.d6026.6b1a@mx.google.com>
@ 2017-05-15 12:57 ` Arnd Bergmann
  2017-05-15 13:39   ` Eric Dumazet
                     ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Arnd Bergmann @ 2017-05-15 12:57 UTC (permalink / raw)
  To: kernelci.org bot
  Cc: Kernel Build Reports Mailman List, Eric Dumazet, gregkh, stable,
	Networking

On Sun, May 14, 2017 at 3:48 PM, kernelci.org bot <bot@kernelci.org> wrote:
>
> stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16)
> Full Build Summary: https://kernelci.org/build/stable/branch/linux-4.10.y/kernel/v4.10.16/
> Tree: stable
> Branch: linux-4.10.y
> Git Describe: v4.10.16
> Git Commit: 6e8e9958691907e8d7eb3b2107619dddbdaeb175
> Git URL: http://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
> Built: 4 unique architectures
>
> Build Failures Detected:
>
> arm: gcc version 5.3.1 20160412 (Linaro GCC 5.3-2016.05)
> spear3xx_defconfig FAIL
> spear6xx_defconfig FAIL
> tct_hammer_defconfig FAIL
> Errors summary:
> 3 net/core/skbuff.c:1575:37: error: 'sock_edemux' undeclared (first use in this function)
> Warnings summary:

This is a regression against v4.10.15, caused by the backport of
c21b48cc1bbf ("net: adjust skb->truesize in ___pskb_trim()") by Eric
Dumazet.

Part of another commit that Eric did earlier fixes it:

158f323b9868 ("net: adjust skb->truesize in pskb_expand_head()")
--- a/include/net/sock.h
+++ b/include/net/sock.h
@@ -1534,7 +1534,7 @@ void sock_efree(struct sk_buff *skb);
 #ifdef CONFIG_INET
 void sock_edemux(struct sk_buff *skb);
 #else
-#define sock_edemux(skb) sock_efree(skb)
+#define sock_edemux sock_efree
 #endif

 int sock_setsockopt(struct socket *sock, int level, int op,

This commit is not marked 'Cc: stable' upstream, but is referenced
in the one that was backported and looks like it might be appropriate
for stable as well. Eric, can you clarify?

       Arnd

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

* Re: stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16)
  2017-05-15 12:57 ` stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16) Arnd Bergmann
@ 2017-05-15 13:39   ` Eric Dumazet
  2017-05-15 13:55     ` Arnd Bergmann
  2017-05-15 14:23   ` David Miller
  2017-05-18  8:15   ` gregkh
  2 siblings, 1 reply; 6+ messages in thread
From: Eric Dumazet @ 2017-05-15 13:39 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: kernelci.org bot, Kernel Build Reports Mailman List, gregkh,
	stable, Networking

On Mon, May 15, 2017 at 5:57 AM, Arnd Bergmann <arnd@arndb.de> wrote:
> On Sun, May 14, 2017 at 3:48 PM, kernelci.org bot <bot@kernelci.org> wrote:
>>
>> stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16)
>> Full Build Summary: https://kernelci.org/build/stable/branch/linux-4.10.y/kernel/v4.10.16/
>> Tree: stable
>> Branch: linux-4.10.y
>> Git Describe: v4.10.16
>> Git Commit: 6e8e9958691907e8d7eb3b2107619dddbdaeb175
>> Git URL: http://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
>> Built: 4 unique architectures
>>
>> Build Failures Detected:
>>
>> arm: gcc version 5.3.1 20160412 (Linaro GCC 5.3-2016.05)
>> spear3xx_defconfig FAIL
>> spear6xx_defconfig FAIL
>> tct_hammer_defconfig FAIL
>> Errors summary:
>> 3 net/core/skbuff.c:1575:37: error: 'sock_edemux' undeclared (first use in this function)
>> Warnings summary:
>
> This is a regression against v4.10.15, caused by the backport of
> c21b48cc1bbf ("net: adjust skb->truesize in ___pskb_trim()") by Eric
> Dumazet.
>
> Part of another commit that Eric did earlier fixes it:
>
> 158f323b9868 ("net: adjust skb->truesize in pskb_expand_head()")
> --- a/include/net/sock.h
> +++ b/include/net/sock.h
> @@ -1534,7 +1534,7 @@ void sock_efree(struct sk_buff *skb);
>  #ifdef CONFIG_INET
>  void sock_edemux(struct sk_buff *skb);
>  #else
> -#define sock_edemux(skb) sock_efree(skb)
> +#define sock_edemux sock_efree
>  #endif
>
>  int sock_setsockopt(struct socket *sock, int level, int op,
>
> This commit is not marked 'Cc: stable' upstream, but is referenced
> in the one that was backported and looks like it might be appropriate
> for stable as well. Eric, can you clarify?
>

Hi Arnd

Yes, it looks like stable would need this small extract from 158f323b9868,
removing the parameter from sock_edemux macro

Thanks.

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

* Re: stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16)
  2017-05-15 13:39   ` Eric Dumazet
@ 2017-05-15 13:55     ` Arnd Bergmann
  2017-05-15 13:57       ` Eric Dumazet
  0 siblings, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2017-05-15 13:55 UTC (permalink / raw)
  To: Eric Dumazet
  Cc: kernelci.org bot, Kernel Build Reports Mailman List, gregkh,
	stable, Networking

On Mon, May 15, 2017 at 3:39 PM, Eric Dumazet <edumazet@google.com> wrote:
> On Mon, May 15, 2017 at 5:57 AM, Arnd Bergmann <arnd@arndb.de> wrote:
>> On Sun, May 14, 2017 at 3:48 PM, kernelci.org bot <bot@kernelci.org> wrote:
>>
>>  int sock_setsockopt(struct socket *sock, int level, int op,
>>
>> This commit is not marked 'Cc: stable' upstream, but is referenced
>> in the one that was backported and looks like it might be appropriate
>> for stable as well. Eric, can you clarify?
>>
>
> Hi Arnd
>
> Yes, it looks like stable would need this small extract from 158f323b9868,
> removing the parameter from sock_edemux macro

Ok, and the rest of 158f323b9868 should not go into stable, right?

      Arnd

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

* Re: stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16)
  2017-05-15 13:55     ` Arnd Bergmann
@ 2017-05-15 13:57       ` Eric Dumazet
  0 siblings, 0 replies; 6+ messages in thread
From: Eric Dumazet @ 2017-05-15 13:57 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: kernelci.org bot, Kernel Build Reports Mailman List, gregkh,
	stable, Networking

On Mon, May 15, 2017 at 6:55 AM, Arnd Bergmann <arnd@arndb.de> wrote:
> On Mon, May 15, 2017 at 3:39 PM, Eric Dumazet <edumazet@google.com> wrote:
>> On Mon, May 15, 2017 at 5:57 AM, Arnd Bergmann <arnd@arndb.de> wrote:
>>> On Sun, May 14, 2017 at 3:48 PM, kernelci.org bot <bot@kernelci.org> wrote:
>>>
>>>  int sock_setsockopt(struct socket *sock, int level, int op,
>>>
>>> This commit is not marked 'Cc: stable' upstream, but is referenced
>>> in the one that was backported and looks like it might be appropriate
>>> for stable as well. Eric, can you clarify?
>>>
>>
>> Hi Arnd
>>
>> Yes, it looks like stable would need this small extract from 158f323b9868,
>> removing the parameter from sock_edemux macro
>
> Ok, and the rest of 158f323b9868 should not go into stable, right?
>

I do not believe this is a stable candidate.

A stable candidate coming from me would have a Fixes: tag

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

* Re: stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16)
  2017-05-15 12:57 ` stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16) Arnd Bergmann
  2017-05-15 13:39   ` Eric Dumazet
@ 2017-05-15 14:23   ` David Miller
  2017-05-18  8:15   ` gregkh
  2 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2017-05-15 14:23 UTC (permalink / raw)
  To: arnd; +Cc: bot, kernel-build-reports, edumazet, gregkh, stable, netdev

From: Arnd Bergmann <arnd@arndb.de>
Date: Mon, 15 May 2017 14:57:08 +0200

> On Sun, May 14, 2017 at 3:48 PM, kernelci.org bot <bot@kernelci.org> wrote:
>>
>> stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16)
>> Full Build Summary: https://kernelci.org/build/stable/branch/linux-4.10.y/kernel/v4.10.16/
>> Tree: stable
>> Branch: linux-4.10.y
>> Git Describe: v4.10.16
>> Git Commit: 6e8e9958691907e8d7eb3b2107619dddbdaeb175
>> Git URL: http://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
>> Built: 4 unique architectures
>>
>> Build Failures Detected:
>>
>> arm: gcc version 5.3.1 20160412 (Linaro GCC 5.3-2016.05)
>> spear3xx_defconfig FAIL
>> spear6xx_defconfig FAIL
>> tct_hammer_defconfig FAIL
>> Errors summary:
>> 3 net/core/skbuff.c:1575:37: error: 'sock_edemux' undeclared (first use in this function)
>> Warnings summary:
> 
> This is a regression against v4.10.15, caused by the backport of
> c21b48cc1bbf ("net: adjust skb->truesize in ___pskb_trim()") by Eric
> Dumazet.
> 
> Part of another commit that Eric did earlier fixes it:
> 
> 158f323b9868 ("net: adjust skb->truesize in pskb_expand_head()")
> --- a/include/net/sock.h
> +++ b/include/net/sock.h
> @@ -1534,7 +1534,7 @@ void sock_efree(struct sk_buff *skb);
>  #ifdef CONFIG_INET
>  void sock_edemux(struct sk_buff *skb);
>  #else
> -#define sock_edemux(skb) sock_efree(skb)
> +#define sock_edemux sock_efree
>  #endif
> 
>  int sock_setsockopt(struct socket *sock, int level, int op,
> 
> This commit is not marked 'Cc: stable' upstream, but is referenced
> in the one that was backported and looks like it might be appropriate
> for stable as well. Eric, can you clarify?

Yeah we should definitely merge this into -stable, sorry for not
noticing this during the backport.

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

* Re: stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16)
  2017-05-15 12:57 ` stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16) Arnd Bergmann
  2017-05-15 13:39   ` Eric Dumazet
  2017-05-15 14:23   ` David Miller
@ 2017-05-18  8:15   ` gregkh
  2 siblings, 0 replies; 6+ messages in thread
From: gregkh @ 2017-05-18  8:15 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: kernelci.org bot, Kernel Build Reports Mailman List,
	Eric Dumazet, stable, Networking

On Mon, May 15, 2017 at 02:57:08PM +0200, Arnd Bergmann wrote:
> On Sun, May 14, 2017 at 3:48 PM, kernelci.org bot <bot@kernelci.org> wrote:
> >
> > stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16)
> > Full Build Summary: https://kernelci.org/build/stable/branch/linux-4.10.y/kernel/v4.10.16/
> > Tree: stable
> > Branch: linux-4.10.y
> > Git Describe: v4.10.16
> > Git Commit: 6e8e9958691907e8d7eb3b2107619dddbdaeb175
> > Git URL: http://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
> > Built: 4 unique architectures
> >
> > Build Failures Detected:
> >
> > arm: gcc version 5.3.1 20160412 (Linaro GCC 5.3-2016.05)
> > spear3xx_defconfig FAIL
> > spear6xx_defconfig FAIL
> > tct_hammer_defconfig FAIL
> > Errors summary:
> > 3 net/core/skbuff.c:1575:37: error: 'sock_edemux' undeclared (first use in this function)
> > Warnings summary:
> 
> This is a regression against v4.10.15, caused by the backport of
> c21b48cc1bbf ("net: adjust skb->truesize in ___pskb_trim()") by Eric
> Dumazet.
> 
> Part of another commit that Eric did earlier fixes it:
> 
> 158f323b9868 ("net: adjust skb->truesize in pskb_expand_head()")
> --- a/include/net/sock.h
> +++ b/include/net/sock.h
> @@ -1534,7 +1534,7 @@ void sock_efree(struct sk_buff *skb);
>  #ifdef CONFIG_INET
>  void sock_edemux(struct sk_buff *skb);
>  #else
> -#define sock_edemux(skb) sock_efree(skb)
> +#define sock_edemux sock_efree
>  #endif
> 
>  int sock_setsockopt(struct socket *sock, int level, int op,
> 
> This commit is not marked 'Cc: stable' upstream, but is referenced
> in the one that was backported and looks like it might be appropriate
> for stable as well. Eric, can you clarify?

Ok, if this is true, can someone provide me with a working backport of
this patch?  As it is, it does not apply cleanly, and I don't know how
to resolve the merge error.

Or, we can just not worry about it, as I'm only going to do one more
4.10-stable release, this week, before we throw it away and never care
about it again :)

thanks,

greg k-h

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

end of thread, other threads:[~2017-05-18  8:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <5918603a.118d1c0a.d6026.6b1a@mx.google.com>
2017-05-15 12:57 ` stable/linux-4.10.y build: 203 builds: 3 failed, 200 passed, 3 errors, 5 warnings (v4.10.16) Arnd Bergmann
2017-05-15 13:39   ` Eric Dumazet
2017-05-15 13:55     ` Arnd Bergmann
2017-05-15 13:57       ` Eric Dumazet
2017-05-15 14:23   ` David Miller
2017-05-18  8:15   ` gregkh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.