Re: [patch 4/7] cpu ops: Core piece for generic atomic per cpuoperations

From: Christoph Lameter
Date: Thu Nov 06 2008 - 10:06:43 EST


On Thu, 6 Nov 2008, Dave Chinner wrote:

> On Wed, Nov 05, 2008 at 05:16:38PM -0600, Christoph Lameter wrote:
> > +
> > +#define __CPU_CMPXCHG(var, old, new) \
> > +({ \
> > + typeof(obj) x; \
> > + typeof(obj) *p = THIS_CPU(&(obj)); \
> > + x = *p; \
> > + if (x == (old)) \
> > + *p = (new); \
> > + (x); \
> > +})
>
> I don't think that will compile - s/obj/var/ perhaps?

Correct.

--
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/