mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Robert ABEL <rabel@cit-ec.uni-bielefeld.de>
Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: of: dynamic: resource: add WARN in release_resource for DT overlays
Date: Wed, 5 Aug 2015 14:04:05 -0700	[thread overview]
Message-ID: <20150805140405.20ab09354f4123c561096eb8@linux-foundation.org> (raw)
In-Reply-To: <1438262237-30889-1-git-send-email-rabel@cit-ec.uni-bielefeld.de>

On Thu, 30 Jul 2015 15:17:16 +0200 Robert ABEL <rabel@cit-ec.uni-bielefeld.de> wrote:

> 
> This patch prevents a kernel OOPS when removing a DT overlay containing
> nodes with reg properties. release_resources is called for these nodes.
> However, the resource structs were never initialized, hence the kernel OOPS.
> 
> This is obviously a stopgap measure until a proper solution is coded, see [1].
> 
> 
> [1]: https://lkml.org/lkml/2014/4/17/359
>
> ...
>
> --- a/kernel/resource.c
> +++ b/kernel/resource.c
> @@ -236,6 +236,13 @@ static int __release_resource(struct resource *old)
>  {
>  	struct resource *tmp, **p;
>  
> +    /* devicetree overlays:
> +     * of code doesn't initialize parent, child, sibling
> +     * gracefully 'do the right thing' here
> +     */
> +	if (WARN(!old->parent, "%s: uninitialized resource %s\n", __FUNCTION__, old->name))
> +		return 0;
> +
>  	p = &old->parent->child;
>  	for (;;) {
>  		tmp = *p;

Can we please have a (much) better changelog for this?  Don't ask
people to go off and trawl through lkml.org threads (especially as
lkml.org seems to be down half the time).

What precisely is causing the crash, what are the plans to fix it, why
do we need a stopgap rather than fixing it properly, etc.

Why not put the workaround at the offending call site (whereever that
is?) rather than in the callee?


      parent reply	other threads:[~2015-08-05 21:04 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <[PATCH v3 0/7] Introducing (yet again) Device Tree Overlays>
2015-07-30 13:17 ` Robert ABEL
2015-07-30 13:17   ` [PATCH] of: resource: add WARN for invalid release_resource calls Robert ABEL
2015-08-05 21:04   ` Andrew Morton [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=20150805140405.20ab09354f4123c561096eb8@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rabel@cit-ec.uni-bielefeld.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®