All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Christoph Lameter <cl@linux.com>,
	LKML <linux-kernel@vger.kernel.org>,
	linux-mm <linux-mm@kvack.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Pekka Enberg <penberg@kernel.org>, Matt Mackall <mpm@selenic.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	RT <linux-rt-users@vger.kernel.org>,
	Clark Williams <clark@redhat.com>, John Kacur <jkacur@gmail.com>,
	"Luis Claudio R. Goncalves" <lgoncalv@redhat.com>
Subject: Re: [RFC][PATCH v2] slub: Keep page and object in sync in slab_alloc_node()
Date: Mon, 21 Jan 2013 17:11:21 +0900	[thread overview]
Message-ID: <20130121081121.GA3936@lge.com> (raw)
In-Reply-To: <1358524501.7383.17.camel@gandalf.local.home>

On Fri, Jan 18, 2013 at 10:55:01AM -0500, Steven Rostedt wrote:
> On Fri, 2013-01-18 at 10:04 -0500, Steven Rostedt wrote:
> 
> Just to be more complete:
> 
> > 	CPU0			CPU1
> > 	----			----
> 			c = __this_cpu_ptr(s->cpu_slab);
> 			<migrates to CPU0>
> 
> > <cpu fetches c->page>
> 			<another task>
> 
> > 			updates c->tid
> > 			updates c->page
> > 			updates c->freelist
> > <cpu fetches c->tid>
> > <cpu fetches c->freelist>
> > 
> >   node_match() succeeds even though
> >     current c->page wont
> > 
> 
>  <migrates back to CPU 1>

Hello.
I have one stupid question just for curiosity.
Does the processor re-order instructions which load data from same cacheline?

> >  this_cpu_cmpxchg_double() only tests
> >    the object (freelist) and tid, both which
> >    will match, but the page that was tested
> >    isn't the right one.
> > 
> 
> Yes, it's very unlikely, but we are in the business of dealing with the
> very unlikely. That's because in our business, the very unlikely is very
> likely. Damn, I need to buy a lotto ticket!
> 
> -- Steve
> 
> 
> --
> To unsubscribe, send a message with 'unsubscribe linux-mm' in
> the body to majordomo@kvack.org.  For more info on Linux MM,
> see: http://www.linux-mm.org/ .
> Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

WARNING: multiple messages have this Message-ID (diff)
From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Christoph Lameter <cl@linux.com>,
	LKML <linux-kernel@vger.kernel.org>,
	linux-mm <linux-mm@kvack.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Pekka Enberg <penberg@kernel.org>, Matt Mackall <mpm@selenic.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	RT <linux-rt-users@vger.kernel.org>,
	Clark Williams <clark@redhat.com>, John Kacur <jkacur@gmail.com>,
	"Luis Claudio R. Goncalves" <lgoncalv@redhat.com>
Subject: Re: [RFC][PATCH v2] slub: Keep page and object in sync in slab_alloc_node()
Date: Mon, 21 Jan 2013 17:11:21 +0900	[thread overview]
Message-ID: <20130121081121.GA3936@lge.com> (raw)
In-Reply-To: <1358524501.7383.17.camel@gandalf.local.home>

On Fri, Jan 18, 2013 at 10:55:01AM -0500, Steven Rostedt wrote:
> On Fri, 2013-01-18 at 10:04 -0500, Steven Rostedt wrote:
> 
> Just to be more complete:
> 
> > 	CPU0			CPU1
> > 	----			----
> 			c = __this_cpu_ptr(s->cpu_slab);
> 			<migrates to CPU0>
> 
> > <cpu fetches c->page>
> 			<another task>
> 
> > 			updates c->tid
> > 			updates c->page
> > 			updates c->freelist
> > <cpu fetches c->tid>
> > <cpu fetches c->freelist>
> > 
> >   node_match() succeeds even though
> >     current c->page wont
> > 
> 
>  <migrates back to CPU 1>

Hello.
I have one stupid question just for curiosity.
Does the processor re-order instructions which load data from same cacheline?

> >  this_cpu_cmpxchg_double() only tests
> >    the object (freelist) and tid, both which
> >    will match, but the page that was tested
> >    isn't the right one.
> > 
> 
> Yes, it's very unlikely, but we are in the business of dealing with the
> very unlikely. That's because in our business, the very unlikely is very
> likely. Damn, I need to buy a lotto ticket!
> 
> -- Steve
> 
> 
> --
> To unsubscribe, send a message with 'unsubscribe linux-mm' in
> the body to majordomo@kvack.org.  For more info on Linux MM,
> see: http://www.linux-mm.org/ .
> Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  parent reply	other threads:[~2013-01-21  8:11 UTC|newest]

Thread overview: 69+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-17 18:10 [RFC][PATCH] slub: Check for page NULL before doing the node_match check Steven Rostedt
2013-01-17 18:10 ` Steven Rostedt
2013-01-17 18:37 ` Steven Rostedt
2013-01-17 18:37   ` Steven Rostedt
2013-01-17 21:28   ` Christoph Lameter
2013-01-17 21:28     ` Christoph Lameter
2013-01-17 21:36     ` Eric Dumazet
2013-01-17 21:36       ` Eric Dumazet
2013-01-17 21:44       ` Steven Rostedt
2013-01-17 21:44         ` Steven Rostedt
2013-01-17 21:43     ` Steven Rostedt
2013-01-17 21:43       ` Steven Rostedt
2013-01-17 21:51       ` Christoph Lameter
2013-01-17 21:51         ` Christoph Lameter
2013-01-17 22:07         ` Steven Rostedt
2013-01-17 22:07           ` Steven Rostedt
2013-01-17 22:46         ` Steven Rostedt
2013-01-17 22:46           ` Steven Rostedt
2013-01-17 23:10           ` Steven Rostedt
2013-01-17 23:10             ` Steven Rostedt
2013-01-17 23:20             ` [RFC][PATCH] slub: Keep page and object in sync in slab_alloc_node() Steven Rostedt
2013-01-17 23:20               ` Steven Rostedt
2013-01-18  0:23               ` Steven Rostedt
2013-01-18  0:23                 ` Steven Rostedt
2013-01-18  0:28                 ` [RFC][PATCH v2] " Steven Rostedt
2013-01-18  0:28                   ` Steven Rostedt
2013-01-18  4:42                   ` Joonsoo Kim
2013-01-18  4:42                     ` Joonsoo Kim
2013-01-18  4:42                     ` Joonsoo Kim
2013-01-18 14:52                     ` Christoph Lameter
2013-01-18 14:52                       ` Christoph Lameter
2013-01-18 15:29                     ` Steven Rostedt
2013-01-18 15:29                       ` Steven Rostedt
2013-01-18 14:44                   ` Christoph Lameter
2013-01-18 14:44                     ` Christoph Lameter
2013-01-18 15:04                     ` Steven Rostedt
2013-01-18 15:04                       ` Steven Rostedt
2013-01-18 15:55                       ` Steven Rostedt
2013-01-18 15:55                         ` Steven Rostedt
2013-01-18 18:29                         ` Christoph Lameter
2013-01-18 18:29                           ` Christoph Lameter
2013-01-18 18:52                           ` Steven Rostedt
2013-01-18 18:52                             ` Steven Rostedt
2013-01-21  1:48                             ` Christoph Lameter
2013-01-21  1:48                               ` Christoph Lameter
2013-01-21  8:11                         ` Joonsoo Kim [this message]
2013-01-21  8:11                           ` Joonsoo Kim
2013-01-21 12:19                           ` Steven Rostedt
2013-01-21 12:19                             ` Steven Rostedt
2013-01-18 18:23                       ` Christoph Lameter
2013-01-18 18:23                         ` Christoph Lameter
2013-01-18 15:09                   ` [RFC][PATCH v3] " Steven Rostedt
2013-01-18 15:09                     ` Steven Rostedt
2013-01-18 18:40                     ` Christoph Lameter
2013-01-18 18:40                       ` Christoph Lameter
2013-01-18 19:09                       ` Eric Dumazet
2013-01-18 19:09                         ` Eric Dumazet
2013-01-18 19:20                         ` Steven Rostedt
2013-01-18 19:20                           ` Steven Rostedt
2013-01-21  1:40                         ` Christoph Lameter
2013-01-21  1:40                           ` Christoph Lameter
2013-01-18 14:43             ` [RFC][PATCH] slub: Check for page NULL before doing the node_match check Christoph Lameter
2013-01-18 14:43               ` Christoph Lameter
     [not found]       ` <alpine.DEB.2.02.1301171547370.2774@gentwo.org>
2013-01-17 21:56         ` Christoph Lameter
2013-01-17 21:56           ` Christoph Lameter
2013-01-17 22:10           ` Steven Rostedt
2013-01-17 22:10             ` Steven Rostedt
2013-01-17 21:22 ` Christoph Lameter
2013-01-17 21:22   ` Christoph Lameter

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=20130121081121.GA3936@lge.com \
    --to=iamjoonsoo.kim@lge.com \
    --cc=akpm@linux-foundation.org \
    --cc=cl@linux.com \
    --cc=clark@redhat.com \
    --cc=jkacur@gmail.com \
    --cc=lgoncalv@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux-rt-users@vger.kernel.org \
    --cc=mpm@selenic.com \
    --cc=penberg@kernel.org \
    --cc=rostedt@goodmis.org \
    --cc=tglx@linutronix.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 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.