All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
To: Rob Herring <robh@kernel.org>
Cc: devicetree@vger.kernel.org, Frank Rowand <frowand.list@gmail.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Michael Ellerman <mpe@ellerman.id.au>,
	Segher Boessenkool <segher@kernel.crashing.org>
Subject: Re: [PATCH] of: Rework and simplify phandle cache to use a fixed size
Date: Wed, 18 Dec 2019 10:47:37 +0100	[thread overview]
Message-ID: <20191218094737.tqq5oeajfgvds6n5@linutronix.de> (raw)
In-Reply-To: <CAL_JsqJgi+Rd1jiBiTcbuoiZUnpahdNfbAQNkbPH4LEM1Cs09A@mail.gmail.com>

On 2019-12-12 13:28:26 [-0600], Rob Herring wrote:
> On Thu, Dec 12, 2019 at 7:05 AM Sebastian Andrzej Siewior
> <bigeasy@linutronix.de> wrote:
> >
> > On 2019-12-11 17:48:54 [-0600], Rob Herring wrote:
> > > > -       if (phandle_cache) {
> > > > -               if (phandle_cache[masked_handle] &&
> > > > -                   handle == phandle_cache[masked_handle]->phandle)
> > > > -                       np = phandle_cache[masked_handle];
> > > > -               if (np && of_node_check_flag(np, OF_DETACHED)) {
> > > > -                       WARN_ON(1); /* did not uncache np on node removal */
> > > > -                       of_node_put(np);
> > > > -                       phandle_cache[masked_handle] = NULL;
> > > > -                       np = NULL;
> > > > -               }
> > > > +       if (phandle_cache[handle_hash] &&
> > > > +           handle == phandle_cache[handle_hash]->phandle)
> > > > +               np = phandle_cache[handle_hash];
> > > > +       if (np && of_node_check_flag(np, OF_DETACHED)) {
> > > > +               WARN_ON(1); /* did not uncache np on node removal */
> > >
> > > BTW, I don't think this check is even valid. If we failed to detach
> > > and remove the node from the cache, then we could be accessing np
> > > after freeing it.
> >
> > this is kmalloc()ed memory which is always valid. If the memory is
> > already re-used then
> >         handle == phandle_cache[handle_hash]->phandle
> >
> > will fail (the check, not the memory access itself).
> 
> There's a 1 in 2^32 chance it won't.

:)

> > If the check
> > remains valid then you can hope for the OF_DETACHED flag to trigger the
> > warning.
> 
> Keyword is hope.
> 
> To look at it another way. Do we need this check? It is in the "fast
> path". There's a single location where we set OF_DETACHED and the
> cache entry is removed at the same time. Also, if we do free the
> node's memory, it also checks for OF_DETACHED. Previously, a free
> wouldn't happen because we incremented the ref count on nodes in the
> cache.

So get rid of it then. It is just __of_detach_node() that removes it.

> Rob

Sebastian

  reply	other threads:[~2019-12-18  9:47 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-11 23:23 [PATCH] of: Rework and simplify phandle cache to use a fixed size Rob Herring
2019-12-11 23:48 ` Rob Herring
2019-12-12 13:05   ` Sebastian Andrzej Siewior
2019-12-12 19:28     ` Rob Herring
2019-12-18  9:47       ` Sebastian Andrzej Siewior [this message]
2019-12-19 15:33     ` Frank Rowand
2019-12-19 15:31   ` Frank Rowand
2019-12-12 11:50 ` Frank Rowand
2019-12-19  3:38   ` Frank Rowand
2019-12-12 13:00 ` Sebastian Andrzej Siewior
2019-12-19 15:51 ` Frank Rowand
2020-01-07 10:22 ` Jon Hunter
2020-01-07 10:22   ` Jon Hunter
     [not found]   ` <5386e959-f9c4-2748-ed08-34ab361aee2c-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2020-01-10 23:50     ` Rob Herring
2020-01-10 23:50       ` Rob Herring
     [not found]       ` <CAL_JsqLmth0bYcG2VnxU-jk_VoC4TgvWD8_e6r1_8WqVwYGq0g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-01-13 11:12         ` Jon Hunter
2020-01-13 11:12           ` Jon Hunter
     [not found]           ` <93314ff5-aa89-cd99-393c-f75f31d9d6e5-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2020-04-14 15:00             ` Rob Herring
2020-04-14 15:00               ` Rob Herring
     [not found]               ` <CAL_JsqL84LvUrNy095E_sC2UJnB3SFBgsw6wjOKmFM249BHMOA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-04-14 19:43                 ` Jon Hunter
2020-04-14 19:43                   ` Jon Hunter

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=20191218094737.tqq5oeajfgvds6n5@linutronix.de \
    --to=bigeasy@linutronix.de \
    --cc=devicetree@vger.kernel.org \
    --cc=frowand.list@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mpe@ellerman.id.au \
    --cc=robh@kernel.org \
    --cc=segher@kernel.crashing.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.