From: Mark Rutland <mark.rutland@arm.com>
To: Joonsoo Kim <js1304@gmail.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
Catalin Marinas <Catalin.Marinas@arm.com>,
Christoph Lameter <cl@linux.com>,
David Rientjes <rientjes@google.com>,
Jesper Dangaard Brouer <brouer@redhat.com>,
Joonsoo Kim <iamjoonsoo.kim@lge.com>,
Linus Torvalds <torvalds@linux-foundation.org>,
Pekka Enberg <penberg@kernel.org>,
Steve Capper <steve.capper@linaro.org>
Subject: Re: [PATCHv2] mm/slub: fix lockups on PREEMPT && !SMP kernels
Date: Wed, 18 Mar 2015 15:21:30 +0000 [thread overview]
Message-ID: <20150318152130.GA19814@leverpostej> (raw)
In-Reply-To: <CAAmzW4MD_bj1pec-HeYEZa8SZsnp2u24mweCHn4qfLB9AwpXxg@mail.gmail.com>
Hi,
> > do {
> > tid = this_cpu_read(s->cpu_slab->tid);
> > c = raw_cpu_ptr(s->cpu_slab);
> > - } while (IS_ENABLED(CONFIG_PREEMPT) && unlikely(tid != c->tid));
> > + } while (IS_ENABLED(CONFIG_PREEMPT) &&
> > + unlikely(tid != READ_ONCE(c->tid)));
[...]
> Could you show me generated code again?
The code generated without this patch in !SMP && PREEMPT kernels is:
/* Hoisted load of c->tid */
ffffffc00016d3c4: f9400404 ldr x4, [x0,#8]
/* this_cpu_read(s->cpu_slab->tid)) -- buggy, see [1] */
ffffffc00016d3c8: f9400401 ldr x1, [x0,#8]
ffffffc00016d3cc: eb04003f cmp x1, x4
ffffffc00016d3d0: 54ffffc1 b.ne ffffffc00016d3c8 <slab_alloc_node.constprop.82+0x30>
The code generated with this patch in !SMP && PREEMPT kernels is:
/* this_cpu_read(s->cpu_slab->tid)) -- buggy, see [1] */
ffffffc00016d3c4: f9400401 ldr x1, [x0,#8]
/* load of c->tid */
ffffffc00016d3c8: f9400404 ldr x4, [x0,#8]
ffffffc00016d3cc: eb04003f cmp x1, x4
ffffffc00016d3d0: 54ffffa1 b.ne ffffffc00016d3c4 <slab_alloc_node.constprop.82+0x2c>
Note that with the patch the branch results in both loads being
performed again.
Given that in !SMP kernels we know that the loads _must_ happen on the
same CPU, I think we could go a bit further with the loop condition:
while (IS_ENABLED(CONFIG_PREEMPT) &&
!IS_ENABLED(CONFIG_SMP) &&
unlikely(tid != READ_ONCE(c->tid)));
The barrier afterwards should be sufficient to order the load of the tid
against subsequent accesses to the other cpu_slab fields.
> What we need to check is redoing whole things in the loop.
> Previous attached code seems to me that it already did
> refetching c->tid in the loop and this patch looks only handle
> refetching c->tid.
The refetch in the loop is this_cpu_read(s->cpu_slab->tid), not the load
of c->tid (which is hoisted above the loop).
> READ_ONCE(c->tid) will trigger redoing 'tid = this_cpu_read(s->cpu_slab->tid)'?
I was under the impression that this_cpu operations would always result
in an access, much like the *_ONCE accessors, so we should aways redo
the access for this_cpu_read(s->cpu_slab->tid). Is that not the case?
Mark.
[1] The arm64 this_cpu * operations are currently buggy. We generate the
percpu address into a register, then perform the access with
separate instructions (and could be preempted between the two).
Steve Capper is currently fixing this.
However, the hoisting of the c->tid load could happen regardless,
whenever raw_cpu_ptr(c) can be evaluated at compile time.
next prev parent reply other threads:[~2015-03-18 15:22 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-13 15:47 [PATCH] mm/slub: fix lockups on PREEMPT && !SMP kernels Mark Rutland
2015-03-13 16:29 ` Christoph Lameter
2015-03-13 18:16 ` Mark Rutland
2015-03-13 18:27 ` Christoph Lameter
2015-03-16 12:45 ` [PATCHv2] " Mark Rutland
2015-03-17 1:09 ` [PATCH] " Joonsoo Kim
2015-03-17 12:00 ` Mark Rutland
2015-03-17 12:15 ` [PATCHv2] " Mark Rutland
2015-03-17 18:57 ` Christoph Lameter
2015-03-18 5:59 ` Joonsoo Kim
2015-03-18 15:21 ` Mark Rutland [this message]
2015-03-19 12:13 ` Joonsoo Kim
2015-03-19 16:16 ` Christoph Lameter
2015-03-24 14:17 ` Ville Syrjälä
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=20150318152130.GA19814@leverpostej \
--to=mark.rutland@arm.com \
--cc=Catalin.Marinas@arm.com \
--cc=akpm@linux-foundation.org \
--cc=brouer@redhat.com \
--cc=cl@linux.com \
--cc=iamjoonsoo.kim@lge.com \
--cc=js1304@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=penberg@kernel.org \
--cc=rientjes@google.com \
--cc=steve.capper@linaro.org \
--cc=torvalds@linux-foundation.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox