From: gregkh <gregkh@linuxfoundation.org>
To: Arnd Bergmann <arnd@arndb.de>
Cc: Olof's autobuilder <build@lixom.net>,
Olof Johansson <olof@lixom.net>,
Kernel Build Reports Mailman List
<kernel-build-reports@lists.linaro.org>,
stable@vger.kernel.org
Subject: Re: stable-rc build: 59 warnings 0 failures (stable-rc/v3.18.54-60-g35c7f23)
Date: Wed, 24 May 2017 13:36:59 +0200 [thread overview]
Message-ID: <20170524113659.GC9460@kroah.com> (raw)
In-Reply-To: <CAK8P3a2_tQzqtU7V8d-3iDREZHNM34sOY=yU=zeNwP9jKvpGeQ@mail.gmail.com>
On Wed, May 24, 2017 at 12:31:21PM +0200, Arnd Bergmann wrote:
> On Tue, May 23, 2017 at 11:53 PM, Olof's autobuilder <build@lixom.net> wrote:
> > Here are the build results from automated periodic testing.
> >
> > The tree being built was stable-rc, found at:
> >
> > https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable-rc.git/
> >
> > 35c7f23 Linux 3.18.55-rc1
>
> > Warnings:
> >
> > 2 include/linux/stddef.h:8:14: warning: 'return' with a value, in function returning void
> > 57 drivers/of/fdt.c:384:10: warning: 'return' with a value, in function returning void
>
> Caused by the backport of
>
> 0aa459efa045 ("of: fdt: add missing allocation-failure check")
>
> which relies on another change from:
>
> 83262418b0ef ("drivers/of: Return allocated memory from
> of_fdt_unflatten_tree()")
>
> Possible fixes are
>
> a) drop 0aa459efa045, as it won't be that important on 3.18: DT overlays
> were added only in 3.19, so this won't ever be called at runtime, and
> we don't normally worry about kmalloc failures during early boot.
>
> b) backport 83262418b0ef, which is otherwise not needed on stable
>
> c) apply or fold the trivial fixup:
>
> 8<--------
> [stable 3.18] fix __unflatten_device_tree warning
>
> A backported patch needs to be modified for a context change
>
> drivers/of/fdt.c:384:10: warning: 'return' with a value, in function
> returning void
>
> Fixes: 0aa459efa045 ("of: fdt: add missing allocation-failure check")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>
> diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c
> index 43bd69dceabf..ca352d3a7d7e 100644
> --- a/drivers/of/fdt.c
> +++ b/drivers/of/fdt.c
> @@ -508,7 +508,7 @@ void *__unflatten_device_tree(const void *blob,
> /* Allocate memory for the expanded device tree */
> mem = dt_alloc(size + 4, __alignof__(struct device_node));
> if (!mem)
> - return NULL;
> + return;
>
> memset(mem, 0, size);
Patch looks corrupted, can you resend it?
thanks,
greg k-h
prev parent reply other threads:[~2017-05-24 11:37 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <5924af3d.c6c8620a.6511f.71b9@mx.google.com>
2017-05-24 10:31 ` stable-rc build: 59 warnings 0 failures (stable-rc/v3.18.54-60-g35c7f23) Arnd Bergmann
2017-05-24 11:36 ` gregkh [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170524113659.GC9460@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=arnd@arndb.de \
--cc=build@lixom.net \
--cc=kernel-build-reports@lists.linaro.org \
--cc=olof@lixom.net \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.