login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2007
»
August
»
16
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: Paul Mackerras
Subject:
Re: [PATCH 0/24] make atomic_read() behave consistently across all architectures
Date: Wednesday, August 15, 2007 - 5:34 pm
Christoph Lameter writes:
quoted text
> On Thu, 16 Aug 2007, Paul Mackerras wrote: > > > In the kernel we use atomic variables in precisely those situations > > where a variable is potentially accessed concurrently by multiple > > CPUs, and where each CPU needs to see updates done by other CPUs in a > > timely fashion. That is what they are for. Therefore the compiler > > must not cache values of atomic variables in registers; each > > atomic_read must result in a load and each atomic_set must result in a > > store. Anything else will just lead to subtle bugs. > > This may have been the intend. However, today the visibility is controlled > using barriers. And we have barriers that we use with atomic operations.
Those barriers are for when we need ordering between atomic variables and other memory locations. An atomic variable by itself doesn't and shouldn't need any barriers for other CPUs to be able to see what's happening to it. Paul. -
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