| To: | David Daney <ddaney@caviumnetworks.com> |
|---|---|
| Subject: | Re: Lots of bugs with current->state = TASK_*INTERRUPTIBLE |
| From: | Steven Rostedt <rostedt@goodmis.org> |
| Date: | Thu, 21 Jan 2010 15:18:24 -0500 |
| Cc: | LKML <linux-kernel@vger.kernel.org>, kernel-janitors <kernel-janitors@vger.kernel.org>, Peter Zijlstra <peterz@infradead.org>, Andrew Morton <akpm@linux-foundation.org>, linux-arch@vger.kernel.org, Greg KH <greg@kroah.com>, Andy Whitcroft <apw@canonical.com>, Ralf Baechle <ralf@linux-mips.org>, linux-mips <linux-mips@linux-mips.org> |
| In-reply-to: | <4B58B1B3.6000502@caviumnetworks.com> |
| Organization: | Kihon Technologies Inc. |
| References: | <1263932978.31321.53.camel@gandalf.stny.rr.com> <4B58A89A.8050405@caviumnetworks.com> <1264102455.31321.293.camel@gandalf.stny.rr.com> <4B58B1B3.6000502@caviumnetworks.com> |
| Reply-to: | rostedt@goodmis.org |
| Sender: | linux-mips-bounce@linux-mips.org |
On Thu, 2010-01-21 at 11:57 -0800, David Daney wrote:
> >> Since the current CPU sees the memory accesses in order, what can be
> >> happening on other CPUs that would require a full mb()?
> >
> > Lets look at a hypothetical situation with:
> >
> > add_wait_queue();
> > current->state = TASK_UNINTERRUPTIBLE;
> > smp_wmb();
> > if (!x)
> > schedule();
> >
> >
> >
> > Then somewhere we probably have:
> >
> > x = 1;
> > smp_wmb();
> > wake_up(queue);
> >
> >
> >
> > CPU 0 CPU 1
> > ------------ -----------
> > add_wait_queue();
> > (cpu pipeline sees a load
> > of x ahead, and preloads it)
>
>
> This is what I thought.
>
> My cpu (Cavium Octeon) does not have out of order reads, so my wmb() is
Can you have reads that are out of order wrt writes? Because the above
does not have out of order reads. It just had a read that came before a
write. The above code could look like:
(hypothetical assembly language)
ld r2, TASK_UNINTERRUPTIBLE
st r2, (current->state)
wmb
ld r1, (x)
cmp r1, 0
Is it possible for the CPU to do the load of r1 before storing r2? If
so, then the bug still exists.
-- Steve
> in fact a full mb() from the point of view of the current CPU. So I
> think I could weaken my bariers in set_current_state() and still get
> correct operation. However as you say...
>
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 1/3] resources: introduce generic page_is_ram(), Xiaotian Feng |
|---|---|
| Next by Date: | Re: Lots of bugs with current->state = TASK_*INTERRUPTIBLE, Steven Rostedt |
| Previous by Thread: | Re: Lots of bugs with current->state = TASK_*INTERRUPTIBLE, David Daney |
| Next by Thread: | Re: Lots of bugs with current->state = TASK_*INTERRUPTIBLE, David Daney |
| Indexes: | [Date] [Thread] [Top] [All Lists] |