Re: [PATCHv2 00/16] atomics: API cleanups

From: Mark Rutland
Date: Wed May 30 2018 - 09:35:03 EST


On Wed, May 30, 2018 at 12:23:12PM +0100, Mark Rutland wrote:
> -#ifdef atomic64_andnot
> -/* atomic64_fetch_andnot_relaxed */
> +#ifndef atomic_andnot
> +#define atomic_andnot(i, v) atomic_and(~(int)(i), (v))
> +#endif

Ugh; s/atomic/atomic64 here.

I've pushed out a corrected branch.

Mark.