Re: [PATCH 1/23] document preferred use of volatile with atomic_t

From: Christoph Lameter
Date: Tue Aug 14 2007 - 18:45:50 EST


On Mon, 13 Aug 2007, Chris Snook wrote:

> @@ -38,7 +45,7 @@
>
> Next, we have:
>
> - #define atomic_read(v) ((v)->counter)
> + #define atomic_read(v) (*(volatile int *)&(v)->counter)
>
> which simply reads the current value of the counter.

volatile means that there is some vague notion of "read it now". But that
really does not exist. Instead we control visibility via barriers
(smp_wmb, smp_rmb). Would it not be best to not have volatile at all in
atomic operations and let the barriers do the work?

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/