All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm/slub: use unchecked percpu access within preemptible sections
@ 2015-01-21  4:31 Sasha Levin
  2015-01-22  1:59 ` Joonsoo Kim
  0 siblings, 1 reply; 4+ messages in thread
From: Sasha Levin @ 2015-01-21  4:31 UTC (permalink / raw)
  To: linux-kernel; +Cc: iamjoonsoo.kim, cl, brouer, akpm, Sasha Levin

Commit "mm/slub: optimize alloc/free fastpath by removing preemption on/off"
has added access to percpu memory while the code is preemptible.

While those accesses are okay, this creates a huge amount of warnings from
the code that checks for that.

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
---
 mm/slub.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mm/slub.c b/mm/slub.c
index 907fabe..9b72b9c 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -2431,8 +2431,8 @@ redo:
 	 * to check if it is matched or not.
 	 */
 	do {
-		tid = this_cpu_read(s->cpu_slab->tid);
-		c = this_cpu_ptr(s->cpu_slab);
+		tid = raw_cpu_read(s->cpu_slab->tid);
+		c = raw_cpu_ptr(s->cpu_slab);
 	} while (IS_ENABLED(CONFIG_PREEMPT) && unlikely(tid != c->tid));
 
 	/*
@@ -2700,8 +2700,8 @@ redo:
 	 * during the cmpxchg then the free will succedd.
 	 */
 	do {
-		tid = this_cpu_read(s->cpu_slab->tid);
-		c = this_cpu_ptr(s->cpu_slab);
+		tid = raw_cpu_read(s->cpu_slab->tid);
+		c = raw_cpu_ptr(s->cpu_slab);
 	} while (IS_ENABLED(CONFIG_PREEMPT) && unlikely(tid != c->tid));
 
 	/* Same with comment on barrier() in slab_alloc_node() */
-- 
1.7.10.4


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

* Re: [PATCH] mm/slub: use unchecked percpu access within preemptible sections
  2015-01-21  4:31 [PATCH] mm/slub: use unchecked percpu access within preemptible sections Sasha Levin
@ 2015-01-22  1:59 ` Joonsoo Kim
  2015-01-22  2:27   ` Sasha Levin
  0 siblings, 1 reply; 4+ messages in thread
From: Joonsoo Kim @ 2015-01-22  1:59 UTC (permalink / raw)
  To: Sasha Levin; +Cc: linux-kernel, cl, brouer, akpm

On Tue, Jan 20, 2015 at 11:31:43PM -0500, Sasha Levin wrote:
> Commit "mm/slub: optimize alloc/free fastpath by removing preemption on/off"
> has added access to percpu memory while the code is preemptible.
> 
> While those accesses are okay, this creates a huge amount of warnings from
> the code that checks for that.
> 
> Signed-off-by: Sasha Levin <sasha.levin@oracle.com>

Hello,

I already sent the patch to fix this issue and it is in mmotm, but,
not be released yet.

https://lkml.org/lkml/2015/1/19/17

Thanks.


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

* Re: [PATCH] mm/slub: use unchecked percpu access within preemptible sections
  2015-01-22  1:59 ` Joonsoo Kim
@ 2015-01-22  2:27   ` Sasha Levin
  2015-01-22  5:13     ` Joonsoo Kim
  0 siblings, 1 reply; 4+ messages in thread
From: Sasha Levin @ 2015-01-22  2:27 UTC (permalink / raw)
  To: Joonsoo Kim; +Cc: linux-kernel, cl, brouer, akpm

On 01/21/2015 08:59 PM, Joonsoo Kim wrote:
> On Tue, Jan 20, 2015 at 11:31:43PM -0500, Sasha Levin wrote:
>> > Commit "mm/slub: optimize alloc/free fastpath by removing preemption on/off"
>> > has added access to percpu memory while the code is preemptible.
>> > 
>> > While those accesses are okay, this creates a huge amount of warnings from
>> > the code that checks for that.
>> > 
>> > Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
> Hello,
> 
> I already sent the patch to fix this issue and it is in mmotm, but,
> not be released yet.
> 
> https://lkml.org/lkml/2015/1/19/17

The patch you sent out still has the issue. The one I sent goes on top of
it.

+	do {
+		tid = this_cpu_read(s->cpu_slab->tid); <=== checked percpu access
+		c = raw_cpu_ptr(s->cpu_slab);
+	} while (IS_ENABLED(CONFIG_PREEMPT) && unlikely(tid != c->tid));


Thanks,
Sasha


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

* Re: [PATCH] mm/slub: use unchecked percpu access within preemptible sections
  2015-01-22  2:27   ` Sasha Levin
@ 2015-01-22  5:13     ` Joonsoo Kim
  0 siblings, 0 replies; 4+ messages in thread
From: Joonsoo Kim @ 2015-01-22  5:13 UTC (permalink / raw)
  To: Sasha Levin; +Cc: linux-kernel, cl, brouer, akpm

On Wed, Jan 21, 2015 at 09:27:41PM -0500, Sasha Levin wrote:
> On 01/21/2015 08:59 PM, Joonsoo Kim wrote:
> > On Tue, Jan 20, 2015 at 11:31:43PM -0500, Sasha Levin wrote:
> >> > Commit "mm/slub: optimize alloc/free fastpath by removing preemption on/off"
> >> > has added access to percpu memory while the code is preemptible.
> >> > 
> >> > While those accesses are okay, this creates a huge amount of warnings from
> >> > the code that checks for that.
> >> > 
> >> > Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
> > Hello,
> > 
> > I already sent the patch to fix this issue and it is in mmotm, but,
> > not be released yet.
> > 
> > https://lkml.org/lkml/2015/1/19/17
> 
> The patch you sent out still has the issue. The one I sent goes on top of
> it.
> 
> +	do {
> +		tid = this_cpu_read(s->cpu_slab->tid); <=== checked percpu access
> +		c = raw_cpu_ptr(s->cpu_slab);
> +	} while (IS_ENABLED(CONFIG_PREEMPT) && unlikely(tid != c->tid));
> 

Hello,

this_cpu_xxx() is designed to be called regardless of interrupts and
preemption.

In Documentation/this_cpu_ops.txt,

The following this_cpu() operations with implied preemption protection
are defined. These operations can be used without worrying about
preemption and interrupts.

        this_cpu_read(pcp)
        ...

And, for correctness of algorithm, tid should be fetched through
this_cpu_read() rather than raw_cpu_read(). Generic implementation of
raw_cpu_read() has a race window to fetch different cpu's tid instead
of the cpu where we are at now and this will cause algorithm broken.

Thanks.

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

end of thread, other threads:[~2015-01-22  5:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-21  4:31 [PATCH] mm/slub: use unchecked percpu access within preemptible sections Sasha Levin
2015-01-22  1:59 ` Joonsoo Kim
2015-01-22  2:27   ` Sasha Levin
2015-01-22  5:13     ` Joonsoo Kim

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.