From: ericm Date: Tue, 31 Jul 2007 15:45:34 +0000 (+0000) Subject: branch: HEAD X-Git-Tag: v1_7_91~115 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=261f220d8bc954560c26ea78794557c86a9b09e4 branch: HEAD remove a duplicate definition. --- diff --git a/lustre/include/liblustre.h b/lustre/include/liblustre.h index 1f99cbc..6eb45b7 100644 --- a/lustre/include/liblustre.h +++ b/lustre/include/liblustre.h @@ -725,7 +725,6 @@ typedef struct { volatile int counter; } atomic_t; #define atomic_dec(a) do { (a)->counter--; } while (0) #define atomic_add(b,a) do {(a)->counter += b;} while (0) #define atomic_sub(b,a) do {(a)->counter -= b;} while (0) -#define ATOMIC_INIT(i) { i } #ifndef likely #define likely(exp) (exp)