login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2007
»
August
»
20
Re: [PATCH 0/24] make atomic_read() behave consistently across all architectures
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Chris Snook
Subject:
Re: [PATCH 0/24] make atomic_read() behave consistently across all architectures
Date: Monday, August 20, 2007 - 6:38 am
Herbert Xu wrote:
quoted text
> On Mon, Aug 20, 2007 at 09:15:11AM -0400, Chris Snook wrote: >> Linus Torvalds wrote: >>> So the only reason to add back "volatile" to the atomic_read() sequence is >>> not to fix bugs, but to _hide_ the bugs better. They're still there, they >>> are just a lot harder to trigger, and tend to be a lot subtler. >> What about barrier removal? With consistent semantics we could optimize a >> fair amount of code. Whether or not that constitutes "premature" >> optimization is open to debate, but there's no question we could reduce our >> register wiping in some places. > > If you've been reading all of Linus's emails you should be > thinking about adding memory barriers, and not removing > compiler barriers. > > He's just told you that code of the kind > > while (!atomic_read(cond)) > ; > > do_something() > > probably needs a memory barrier (not just compiler) so that > do_something() doesn't see stale cache content that occured > before cond flipped.
Such code generally doesn't care precisely when it gets the update, just that the update is atomic, and it doesn't loop forever. Regardless, I'm convinced we just need to do it all in assembly. -- Chris -
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Arnd Bergmann
, (Thu Aug 9, 5:41 am)
[PATCH 0/24] make atomic_read() behave consistently across ...
, Chris Snook
, (Thu Aug 9, 6:14 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Chris Snook
, (Thu Aug 9, 7:29 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Arnd Bergmann
, (Thu Aug 9, 8:30 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Tue Aug 14, 3:31 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Chris Snook
, (Tue Aug 14, 3:45 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Tue Aug 14, 3:51 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Tue Aug 14, 4:08 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Tue Aug 14, 4:26 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Wed Aug 15, 3:35 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Wed Aug 15, 5:04 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 5:31 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Wed Aug 15, 6:08 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Wed Aug 15, 6:11 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 6:47 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 7:25 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Wed Aug 15, 8:33 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 9:08 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 10:18 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 10:33 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 10:55 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 11:05 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, David Howells
, (Wed Aug 15, 11:19 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Wed Aug 15, 11:31 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 11:45 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 12:07 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 12:40 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Wed Aug 15, 12:59 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Wed Aug 15, 1:42 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Wed Aug 15, 1:58 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Wed Aug 15, 2:07 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Wed Aug 15, 4:22 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Wed Aug 15, 4:41 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 4:53 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Wed Aug 15, 5:12 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 5:23 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Wed Aug 15, 5:26 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Wed Aug 15, 5:30 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Wed Aug 15, 5:34 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 5:39 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Wed Aug 15, 5:40 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Wed Aug 15, 5:42 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 5:49 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Wed Aug 15, 5:53 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 5:53 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Wed Aug 15, 5:59 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 6:14 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 6:14 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 6:23 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Wed Aug 15, 6:41 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Wed Aug 15, 6:51 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Wed Aug 15, 7:00 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Wed Aug 15, 7:05 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Wed Aug 15, 7:07 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Wed Aug 15, 7:11 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 7:15 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Wed Aug 15, 7:15 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Wed Aug 15, 7:17 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 7:32 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 7:33 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Wed Aug 15, 7:35 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 8:01 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Wed Aug 15, 8:05 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Wed Aug 15, 8:15 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Bill Fink
, (Wed Aug 15, 8:37 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Wed Aug 15, 8:43 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Wed Aug 15, 9:11 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 10:20 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Wed Aug 15, 10:39 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Wed Aug 15, 10:57 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Wed Aug 15, 11:56 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Thu Aug 16, 12:09 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Thu Aug 16, 1:06 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Thu Aug 16, 1:10 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Thu Aug 16, 2:25 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Thu Aug 16, 2:54 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Thu Aug 16, 3:31 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Thu Aug 16, 3:35 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Thu Aug 16, 3:42 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Ilpo Järvinen
, (Thu Aug 16, 7:48 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Thu Aug 16, 9:19 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Thu Aug 16, 9:34 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Thu Aug 16, 11:54 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Thu Aug 16, 12:39 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Chris Snook
, (Thu Aug 16, 12:48 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Chris Snook
, (Thu Aug 16, 12:55 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Chris Snook
, (Thu Aug 16, 12:55 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Thu Aug 16, 1:07 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Thu Aug 16, 1:20 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Thu Aug 16, 1:50 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Thu Aug 16, 2:00 pm)
RE: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Luck, Tony
, (Thu Aug 16, 2:08 pm)
RE: [PATCH 0/24] make atomic_read() behave consistently ac ...
, David Schwartz
, (Thu Aug 16, 3:40 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Thu Aug 16, 4:59 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Thu Aug 16, 5:02 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Thu Aug 16, 6:01 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Thu Aug 16, 6:02 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Thu Aug 16, 6:28 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Chris Snook
, (Thu Aug 16, 7:04 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Thu Aug 16, 7:13 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Thu Aug 16, 7:16 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Nick Piggin
, (Thu Aug 16, 7:31 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Linus Torvalds
, (Thu Aug 16, 8:03 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Nick Piggin
, (Thu Aug 16, 8:15 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Thu Aug 16, 8:43 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Thu Aug 16, 8:53 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Thu Aug 16, 9:02 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Thu Aug 16, 9:24 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Thu Aug 16, 9:32 pm)
RE: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Thu Aug 16, 9:36 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Nick Piggin
, (Thu Aug 16, 9:39 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Thu Aug 16, 10:04 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Thu Aug 16, 10:07 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Thu Aug 16, 10:09 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Thu Aug 16, 10:32 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul Mackerras
, (Thu Aug 16, 10:41 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Thu Aug 16, 11:26 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Fri Aug 17, 12:25 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 12:39 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Nick Piggin
, (Fri Aug 17, 1:06 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 1:28 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Nick Piggin
, (Fri Aug 17, 1:38 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 1:58 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 2:14 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Nick Piggin
, (Fri Aug 17, 2:15 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Nick Piggin
, (Fri Aug 17, 2:31 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 3:03 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Fri Aug 17, 3:48 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 3:55 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Fri Aug 17, 3:58 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Stefan Richter
, (Fri Aug 17, 4:08 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Nick Piggin
, (Fri Aug 17, 4:50 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Nick Piggin
, (Fri Aug 17, 5:39 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 5:50 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Nick Piggin
, (Fri Aug 17, 5:56 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 6:36 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Fri Aug 17, 7:31 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Linus Torvalds
, (Fri Aug 17, 9:48 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Fri Aug 17, 10:41 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 11:31 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 11:38 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Chris Friesen
, (Fri Aug 17, 11:50 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Arjan van de Ven
, (Fri Aug 17, 11:54 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Fri Aug 17, 11:56 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Linus Torvalds
, (Fri Aug 17, 12:08 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Fri Aug 17, 12:49 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Fri Aug 17, 3:09 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Fri Aug 17, 3:14 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Fri Aug 17, 3:34 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Fri Aug 17, 3:38 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Fri Aug 17, 4:17 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 4:55 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Fri Aug 17, 5:04 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 6:56 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 7:15 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Fri Aug 17, 7:15 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Fri Aug 17, 8:33 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Fri Aug 17, 10:18 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Sat Aug 18, 6:20 am)
LDD3 pitfalls (was Re: [PATCH 0/24] make atomic_read() beh ...
, Stefan Richter
, (Sat Aug 18, 7:35 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Sat Aug 18, 7:42 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Chris Snook
, (Mon Aug 20, 6:15 am)
Re: LDD3 pitfalls (was Re: [PATCH 0/24] make atomic_read() ...
, Chris Snook
, (Mon Aug 20, 6:28 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Mon Aug 20, 6:32 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Chris Snook
, (Mon Aug 20, 6:38 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Mon Aug 20, 3:07 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Linus Torvalds
, (Mon Aug 20, 10:46 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, David Miller
, (Tue Aug 21, 12:04 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Chris Snook
, (Tue Aug 21, 6:50 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Tue Aug 21, 7:59 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Satyam Sharma
, (Tue Aug 21, 9:31 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Linus Torvalds
, (Tue Aug 21, 9:43 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Denys Vlasenko
, (Fri Aug 24, 5:50 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Fri Aug 24, 10:15 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Denys Vlasenko
, (Fri Aug 24, 1:21 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Denys Vlasenko
, (Sun Sep 9, 11:02 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Arjan van de Ven
, (Sun Sep 9, 11:18 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Denys Vlasenko
, (Mon Sep 10, 3:56 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Herbert Xu
, (Mon Sep 10, 4:15 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Kyle Moffett
, (Mon Sep 10, 5:22 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Denys Vlasenko
, (Mon Sep 10, 6:38 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Denys Vlasenko
, (Mon Sep 10, 7:16 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Denys Vlasenko
, (Mon Sep 10, 7:38 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Arjan van de Ven
, (Mon Sep 10, 7:51 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Linus Torvalds
, (Mon Sep 10, 8:09 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Denys Vlasenko
, (Mon Sep 10, 9:46 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Arjan van de Ven
, (Mon Sep 10, 10:02 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Mon Sep 10, 11:59 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Mon Sep 10, 11:59 am)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Kyle Moffett
, (Mon Sep 10, 12:59 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Mon Sep 10, 1:54 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Christoph Lameter
, (Mon Sep 10, 2:36 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Paul E. McKenney
, (Mon Sep 10, 2:50 pm)
[PATCH] Document non-semantics of atomic_read() and atomic ...
, Chris Snook
, (Mon Sep 10, 4:19 pm)
Re: [PATCH] Document non-semantics of atomic_read() and at ...
, Paul E. McKenney
, (Mon Sep 10, 4:44 pm)
Re: [PATCH 0/24] make atomic_read() behave consistently ac ...
, Segher Boessenkool
, (Mon Sep 10, 7:27 pm)
Re: [PATCH] Document non-semantics of atomic_read() and at ...
, Christoph Lameter
, (Tue Sep 11, 12:35 pm)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Greg KH
Og dreams of kernels
Jens Axboe
[PATCH 31/33] Fusion: sg chaining support
Arnd Bergmann
Re: finding your own dead "CONFIG_" variables
Mark Brown
[PATCH 2/2] Subject: natsemi: Allow users to disable workaround for DspCfg reset
Tony Breeds
[LGUEST] Look in object dir for .config
git
:
Brian Downing
Re: Git in a Nutshell guide
John Benes
Re: master has some toys
Matthias Lederhofer
[PATCH 4/7] introduce GIT_WORK_TREE to specify the work tree
Alexander Sulfrian
[RFC/PATCH] RE: git calls SSH_ASKPASS even if DISPLAY is not set
Junio C Hamano
Re: Rss produced by git is not valid xml?
git-commits-head
:
Linux Kernel Mailing List
iSeries: fix section mismatch in iseries_veth
Linux Kernel Mailing List
ixbge: remove TX lock and redo TX accounting.
Linux Kernel Mailing List
ixgbe: fix several counter register errata
Linux Kernel Mailing List
b43: fix build with CONFIG_SSB_PCIHOST=n
Linux Kernel Mailing List
9p: block-based virtio client
linux-netdev
:
Michael Breuer
Re: [PATCH] af_packet: Don't use skb after dev_queue_xmit()
Michael Breuer
Re: [PATCH] af_packet: Don't use skb after dev_queue_xmit()
David Daney
[PATCH 5/7] Staging: Octeon Ethernet: Convert to NAPI.
Wolfgang Grandegger
[PATCH net-next v4 1/3] can: mscan: fix improper return if dlc < 8 in start_xmi...
Amit Kumar Salecha
[PATCHv3 NEXT 2/2] NET: Add Qlogic ethernet driver for CNA devices
openbsd-misc
:
Theo de Raadt
Re: Old IPSEC bug
Tomáš Bodžár
Problem with vpnc connection - check group password !
Insan Praja SW
Mandoc Compiling Error
Carl Roberso
Re: Cannot change MTU of carp interface?
Richard Daemon
Re: booting openbsd on eee without cd-rom
Colocation donated by:
Syndicate