[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.1.10.0811131230470.23751@gandalf.stny.rr.com>
Date: Thu, 13 Nov 2008 12:32:23 -0500 (EST)
From: Steven Rostedt <rostedt@...dmis.org>
To: Andi Kleen <andi@...stfloor.org>
cc: Frédéric Weisbecker <fweisbec@...il.com>,
Ingo Molnar <mingo@...e.hu>,
Linux Kernel <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 1/2] tracing/function-return-tracer: Make the function
return tracer lockless
On Thu, 13 Nov 2008, Andi Kleen wrote:
> > So the answer to this is:
> >
> > i = index++;
> > barrier();
> > write to index i (not index);
>
> That was my first thought when I wrote the original email,
> but the disadvantage is that barrier() is a big hammer
> that flushes everything and can make the code much worse.
> That is why I suggested local_add_return() instead.
barrier() is a compiler barrier, does nothing with the caches, and is
quite cheap. We only need a compiler barrier because we are only
protecting ourselves from things that happen on the current CPU. No other
devices or other CPUs are involved.
-- Steve
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists