linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613)
       [not found] <593fb6bf.8e471c0a.b6399.5a75@mx.google.com>
@ 2017-06-13 11:59 ` Arnd Bergmann
  2017-06-13 13:13   ` gregkh
                     ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Arnd Bergmann @ 2017-06-13 11:59 UTC (permalink / raw)
  To: kernelci.org bot
  Cc: Kernel Build Reports Mailman List, gregkh,
	Linux Kernel Mailing List, ashwanth, David S. Miller,
	Aleksa Sarai

On Tue, Jun 13, 2017 at 11:56 AM, kernelci.org bot <bot@kernelci.org> wrote:
>
> next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613)
> Full Build Summary: https://kernelci.org/build/next/branch/master/kernel/next-20170613/
> Tree: next
> Branch: master
> Git Describe: next-20170613
> Git Commit: bc4c75f41a1ceb456d6a73c1cdbc5f0350200c16
> Git URL: http://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
> Built: 4 unique architectures
>
> Build Failures Detected:
>
> arm: gcc version 5.3.1 20160412 (Linaro GCC 5.3-2016.05)
> rpc_defconfig FAIL
> Errors summary:
> 1 arch/arm/mach-rpc/ecard.c:799:23: error: 'vendor_show' undeclared here (not in a function)
> 1 arch/arm/mach-rpc/ecard.c:794:1: error: expected ',' or ';' before 'static'

Caused by 71d1e5d71cec ("arm: ecard: use dev_groups and not dev_attrs
for bus_type"), missing ';' after

+static DEVICE_ATTR_RO(resource_show)

> Warnings summary:
> 127 net/core/dev.c:8330:2: warning: 'remsd' is used uninitialized in this function [-Wuninitialized]

Caused by 773fc8f6e8d6 ("net: rps: send out pending IPI's on CPU hotplug")
valid bug: net_rps_send_ipi() is called with an uninitialized argument when
CONFIG_RPS is disabled.

> 2 drivers/tty/pty.c:466:12: warning: 'pty_get_peer' defined but not used [-Wunused-function]

Caused by 54ebbfb16034 ("tty: add TIOCGPTPEER ioctl")

pty_get_peer is only used inside of CONFIG_UNIX98_PTYS, could
be marked 'inline' or __maybe_unused, or moved into that #ifdef.

      Arnd

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

* Re: next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613)
  2017-06-13 11:59 ` next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613) Arnd Bergmann
@ 2017-06-13 13:13   ` gregkh
  2017-06-13 15:32   ` David Miller
  2017-06-14  9:59   ` gregkh
  2 siblings, 0 replies; 4+ messages in thread
From: gregkh @ 2017-06-13 13:13 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: kernelci.org bot, Kernel Build Reports Mailman List,
	Linux Kernel Mailing List, ashwanth, David S. Miller,
	Aleksa Sarai

On Tue, Jun 13, 2017 at 01:59:40PM +0200, Arnd Bergmann wrote:
> On Tue, Jun 13, 2017 at 11:56 AM, kernelci.org bot <bot@kernelci.org> wrote:
> >
> > next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613)
> > Full Build Summary: https://kernelci.org/build/next/branch/master/kernel/next-20170613/
> > Tree: next
> > Branch: master
> > Git Describe: next-20170613
> > Git Commit: bc4c75f41a1ceb456d6a73c1cdbc5f0350200c16
> > Git URL: http://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
> > Built: 4 unique architectures
> >
> > Build Failures Detected:
> >
> > arm: gcc version 5.3.1 20160412 (Linaro GCC 5.3-2016.05)
> > rpc_defconfig FAIL
> > Errors summary:
> > 1 arch/arm/mach-rpc/ecard.c:799:23: error: 'vendor_show' undeclared here (not in a function)
> > 1 arch/arm/mach-rpc/ecard.c:794:1: error: expected ',' or ';' before 'static'
> 
> Caused by 71d1e5d71cec ("arm: ecard: use dev_groups and not dev_attrs
> for bus_type"), missing ';' after
> 
> +static DEVICE_ATTR_RO(resource_show)

Ugh, three patches to get this one change correct, I think this is
getting to be a record...  I'll go fix it up now, sorry about this.

> > 2 drivers/tty/pty.c:466:12: warning: 'pty_get_peer' defined but not used [-Wunused-function]
> 
> Caused by 54ebbfb16034 ("tty: add TIOCGPTPEER ioctl")
> 
> pty_get_peer is only used inside of CONFIG_UNIX98_PTYS, could
> be marked 'inline' or __maybe_unused, or moved into that #ifdef.

Hm, anyone want to make up a patch for this one?

thanks,

greg k-h

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

* Re: next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613)
  2017-06-13 11:59 ` next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613) Arnd Bergmann
  2017-06-13 13:13   ` gregkh
@ 2017-06-13 15:32   ` David Miller
  2017-06-14  9:59   ` gregkh
  2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2017-06-13 15:32 UTC (permalink / raw)
  To: arnd; +Cc: bot, kernel-build-reports, gregkh, linux-kernel, ashwanth, asarai

From: Arnd Bergmann <arnd@arndb.de>
Date: Tue, 13 Jun 2017 13:59:40 +0200

> On Tue, Jun 13, 2017 at 11:56 AM, kernelci.org bot <bot@kernelci.org> wrote:
>> Warnings summary:
>> 127 net/core/dev.c:8330:2: warning: 'remsd' is used uninitialized in this function [-Wuninitialized]
> 
> Caused by 773fc8f6e8d6 ("net: rps: send out pending IPI's on CPU hotplug")
> valid bug: net_rps_send_ipi() is called with an uninitialized argument when
> CONFIG_RPS is disabled.

This one should be fixed now.

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

* Re: next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613)
  2017-06-13 11:59 ` next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613) Arnd Bergmann
  2017-06-13 13:13   ` gregkh
  2017-06-13 15:32   ` David Miller
@ 2017-06-14  9:59   ` gregkh
  2 siblings, 0 replies; 4+ messages in thread
From: gregkh @ 2017-06-14  9:59 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: kernelci.org bot, Kernel Build Reports Mailman List,
	Linux Kernel Mailing List, ashwanth, David S. Miller,
	Aleksa Sarai

On Tue, Jun 13, 2017 at 01:59:40PM +0200, Arnd Bergmann wrote:
> On Tue, Jun 13, 2017 at 11:56 AM, kernelci.org bot <bot@kernelci.org> wrote:
> >
> > next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613)
> > Full Build Summary: https://kernelci.org/build/next/branch/master/kernel/next-20170613/
> > Tree: next
> > Branch: master
> > Git Describe: next-20170613
> > Git Commit: bc4c75f41a1ceb456d6a73c1cdbc5f0350200c16
> > Git URL: http://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
> > Built: 4 unique architectures
> >
> > Build Failures Detected:
> >
> > arm: gcc version 5.3.1 20160412 (Linaro GCC 5.3-2016.05)
> > rpc_defconfig FAIL
> > Errors summary:
> > 1 arch/arm/mach-rpc/ecard.c:799:23: error: 'vendor_show' undeclared here (not in a function)
> > 1 arch/arm/mach-rpc/ecard.c:794:1: error: expected ',' or ';' before 'static'
> 
> Caused by 71d1e5d71cec ("arm: ecard: use dev_groups and not dev_attrs
> for bus_type"), missing ';' after
> 
> +static DEVICE_ATTR_RO(resource_show)

Should now be fixed, sorry for the noise.

greg k-h

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

end of thread, other threads:[~2017-06-14 10:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <593fb6bf.8e471c0a.b6399.5a75@mx.google.com>
2017-06-13 11:59 ` next/master build: 208 builds: 2 failed, 206 passed, 2 errors, 147 warnings (next-20170613) Arnd Bergmann
2017-06-13 13:13   ` gregkh
2017-06-13 15:32   ` David Miller
2017-06-14  9:59   ` gregkh

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