Skip to content

Commit

Permalink
atomic_t: unify all arch definitions
Browse files Browse the repository at this point in the history
The atomic_t type cannot currently be used in some header files because it
would create an include loop with asm/atomic.h.  Move the type definition
to linux/types.h to break the loop.

Signed-off-by: Matthew Wilcox <[email protected]>
Cc: Huang Ying <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Matthew Wilcox authored and torvalds committed Jan 6, 2009
1 parent f99ebf0 commit ea43546
Show file tree
Hide file tree
Showing 23 changed files with 33 additions and 104 deletions.
9 changes: 1 addition & 8 deletions arch/alpha/include/asm/atomic.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef _ALPHA_ATOMIC_H
#define _ALPHA_ATOMIC_H

#include <linux/types.h>
#include <asm/barrier.h>
#include <asm/system.h>

Expand All @@ -13,14 +14,6 @@
*/


/*
* Counter is volatile to make sure gcc doesn't try to be clever
* and move things around on us. We need to use _exactly_ the address
* the user gave us, not some alias that contains the same information.
*/
typedef struct { volatile int counter; } atomic_t;
typedef struct { volatile long counter; } atomic64_t;

#define ATOMIC_INIT(i) ( (atomic_t) { (i) } )
#define ATOMIC64_INIT(i) ( (atomic64_t) { (i) } )

Expand Down
3 changes: 1 addition & 2 deletions arch/arm/include/asm/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@
#define __ASM_ARM_ATOMIC_H

#include <linux/compiler.h>
#include <linux/types.h>
#include <asm/system.h>

typedef struct { volatile int counter; } atomic_t;

#define ATOMIC_INIT(i) { (i) }

#ifdef __KERNEL__
Expand Down
2 changes: 1 addition & 1 deletion arch/avr32/include/asm/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
#ifndef __ASM_AVR32_ATOMIC_H
#define __ASM_AVR32_ATOMIC_H

#include <linux/types.h>
#include <asm/system.h>

typedef struct { volatile int counter; } atomic_t;
#define ATOMIC_INIT(i) { (i) }

#define atomic_read(v) ((v)->counter)
Expand Down
4 changes: 1 addition & 3 deletions arch/blackfin/include/asm/atomic.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef __ARCH_BLACKFIN_ATOMIC__
#define __ARCH_BLACKFIN_ATOMIC__

#include <linux/types.h>
#include <asm/system.h> /* local_irq_XXX() */

/*
Expand All @@ -13,9 +14,6 @@
* Tony Kou ([email protected]) Lineo Inc. 2001
*/

typedef struct {
int counter;
} atomic_t;
#define ATOMIC_INIT(i) { (i) }

#define atomic_read(v) ((v)->counter)
Expand Down
4 changes: 1 addition & 3 deletions arch/cris/include/asm/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define __ASM_CRIS_ATOMIC__

#include <linux/compiler.h>

#include <linux/types.h>
#include <asm/system.h>
#include <arch/atomic.h>

Expand All @@ -13,8 +13,6 @@
* resource counting etc..
*/

typedef struct { volatile int counter; } atomic_t;

#define ATOMIC_INIT(i) { (i) }

#define atomic_read(v) ((v)->counter)
Expand Down
3 changes: 2 additions & 1 deletion arch/h8300/include/asm/atomic.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
#ifndef __ARCH_H8300_ATOMIC__
#define __ARCH_H8300_ATOMIC__

#include <linux/types.h>

/*
* Atomic operations that C can't guarantee us. Useful for
* resource counting etc..
*/

typedef struct { int counter; } atomic_t;
#define ATOMIC_INIT(i) { (i) }

#define atomic_read(v) ((v)->counter)
Expand Down
6 changes: 0 additions & 6 deletions arch/ia64/include/asm/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@
#include <asm/intrinsics.h>
#include <asm/system.h>

/*
* On IA-64, counter must always be volatile to ensure that that the
* memory accesses are ordered.
*/
typedef struct { volatile __s32 counter; } atomic_t;
typedef struct { volatile __s64 counter; } atomic64_t;

#define ATOMIC_INIT(i) ((atomic_t) { (i) })
#define ATOMIC64_INIT(i) ((atomic64_t) { (i) })
Expand Down
2 changes: 1 addition & 1 deletion arch/m68knommu/include/asm/atomic.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef __ARCH_M68KNOMMU_ATOMIC__
#define __ARCH_M68KNOMMU_ATOMIC__

#include <linux/types.h>
#include <asm/system.h>

/*
Expand All @@ -12,7 +13,6 @@
* We do not have SMP m68k systems, so we don't have to deal with that.
*/

typedef struct { int counter; } atomic_t;
#define ATOMIC_INIT(i) { (i) }

#define atomic_read(v) ((v)->counter)
Expand Down
5 changes: 1 addition & 4 deletions arch/mips/include/asm/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@
#define _ASM_ATOMIC_H

#include <linux/irqflags.h>
#include <linux/types.h>
#include <asm/barrier.h>
#include <asm/cpu-features.h>
#include <asm/war.h>
#include <asm/system.h>

typedef struct { volatile int counter; } atomic_t;

#define ATOMIC_INIT(i) { (i) }

/*
Expand Down Expand Up @@ -404,8 +403,6 @@ static __inline__ int atomic_add_unless(atomic_t *v, int a, int u)

#ifdef CONFIG_64BIT

typedef struct { volatile long counter; } atomic64_t;

#define ATOMIC64_INIT(i) { (i) }

/*
Expand Down
11 changes: 3 additions & 8 deletions arch/parisc/include/asm/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,11 @@ static inline unsigned long __cmpxchg_local(volatile void *ptr,
#define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n))
#endif

/* Note that we need not lock read accesses - aligned word writes/reads
* are atomic, so a reader never sees unconsistent values.
*
* Cache-line alignment would conflict with, for example, linux/module.h
/*
* Note that we need not lock read accesses - aligned word writes/reads
* are atomic, so a reader never sees inconsistent values.
*/

typedef struct { volatile int counter; } atomic_t;

/* It's possible to reduce all atomic operations to either
* __atomic_add_return, atomic_set and atomic_read (the latter
* is there only for consistency).
Expand Down Expand Up @@ -260,8 +257,6 @@ static __inline__ int atomic_add_unless(atomic_t *v, int a, int u)

#ifdef CONFIG_64BIT

typedef struct { volatile s64 counter; } atomic64_t;

#define ATOMIC64_INIT(i) ((atomic64_t) { (i) })

static __inline__ int
Expand Down
4 changes: 1 addition & 3 deletions arch/powerpc/include/asm/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* PowerPC atomic operations
*/

typedef struct { int counter; } atomic_t;
#include <linux/types.h>

#ifdef __KERNEL__
#include <linux/compiler.h>
Expand Down Expand Up @@ -251,8 +251,6 @@ static __inline__ int atomic_dec_if_positive(atomic_t *v)

#ifdef __powerpc64__

typedef struct { long counter; } atomic64_t;

#define ATOMIC64_INIT(i) { (i) }

static __inline__ long atomic64_read(const atomic64_t *v)
Expand Down
7 changes: 1 addition & 6 deletions arch/s390/include/asm/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define __ARCH_S390_ATOMIC__

#include <linux/compiler.h>
#include <linux/types.h>

/*
* include/asm-s390/atomic.h
Expand All @@ -23,9 +24,6 @@
* S390 uses 'Compare And Swap' for atomicity in SMP enviroment
*/

typedef struct {
int counter;
} __attribute__ ((aligned (4))) atomic_t;
#define ATOMIC_INIT(i) { (i) }

#ifdef __KERNEL__
Expand Down Expand Up @@ -149,9 +147,6 @@ static __inline__ int atomic_add_unless(atomic_t *v, int a, int u)
#undef __CS_LOOP

#ifdef __s390x__
typedef struct {
long long counter;
} __attribute__ ((aligned (8))) atomic64_t;
#define ATOMIC64_INIT(i) { (i) }

#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 2)
Expand Down
7 changes: 3 additions & 4 deletions arch/sh/include/asm/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,15 @@
*
*/

typedef struct { volatile int counter; } atomic_t;
#include <linux/compiler.h>
#include <linux/types.h>
#include <asm/system.h>

#define ATOMIC_INIT(i) ( (atomic_t) { (i) } )

#define atomic_read(v) ((v)->counter)
#define atomic_set(v,i) ((v)->counter = (i))

#include <linux/compiler.h>
#include <asm/system.h>

#if defined(CONFIG_GUSA_RB)
#include <asm/atomic-grb.h>
#elif defined(CONFIG_CPU_SH4A)
Expand Down
2 changes: 0 additions & 2 deletions arch/sparc/include/asm/atomic_32.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

#include <linux/types.h>

typedef struct { volatile int counter; } atomic_t;

#ifdef __KERNEL__

#define ATOMIC_INIT(i) { (i) }
Expand Down
3 changes: 0 additions & 3 deletions arch/sparc/include/asm/atomic_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
#include <linux/types.h>
#include <asm/system.h>

typedef struct { volatile int counter; } atomic_t;
typedef struct { volatile __s64 counter; } atomic64_t;

#define ATOMIC_INIT(i) { (i) }
#define ATOMIC64_INIT(i) { (i) }

Expand Down
10 changes: 1 addition & 9 deletions arch/x86/include/asm/atomic_32.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define _ASM_X86_ATOMIC_32_H

#include <linux/compiler.h>
#include <linux/types.h>
#include <asm/processor.h>
#include <asm/cmpxchg.h>

Expand All @@ -10,15 +11,6 @@
* resource counting etc..
*/

/*
* Make sure gcc doesn't try to be clever and move things around
* on us. We need to use _exactly_ the address the user gave us,
* not some alias that contains the same information.
*/
typedef struct {
int counter;
} atomic_t;

#define ATOMIC_INIT(i) { (i) }

/**
Expand Down
18 changes: 2 additions & 16 deletions arch/x86/include/asm/atomic_64.h
Original file line number Diff line number Diff line change
@@ -1,25 +1,15 @@
#ifndef _ASM_X86_ATOMIC_64_H
#define _ASM_X86_ATOMIC_64_H

#include <linux/types.h>
#include <asm/alternative.h>
#include <asm/cmpxchg.h>

/* atomic_t should be 32 bit signed type */

/*
* Atomic operations that C can't guarantee us. Useful for
* resource counting etc..
*/

/*
* Make sure gcc doesn't try to be clever and move things around
* on us. We need to use _exactly_ the address the user gave us,
* not some alias that contains the same information.
*/
typedef struct {
int counter;
} atomic_t;

#define ATOMIC_INIT(i) { (i) }

/**
Expand Down Expand Up @@ -191,11 +181,7 @@ static inline int atomic_sub_return(int i, atomic_t *v)
#define atomic_inc_return(v) (atomic_add_return(1, v))
#define atomic_dec_return(v) (atomic_sub_return(1, v))

/* An 64bit atomic type */

typedef struct {
long counter;
} atomic64_t;
/* The 64-bit atomic type */

#define ATOMIC64_INIT(i) { (i) }

Expand Down
4 changes: 0 additions & 4 deletions include/asm-frv/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@
#define smp_mb__before_atomic_inc() barrier()
#define smp_mb__after_atomic_inc() barrier()

typedef struct {
int counter;
} atomic_t;

#define ATOMIC_INIT(i) { (i) }
#define atomic_read(v) ((v)->counter)
#define atomic_set(v, i) (((v)->counter) = (i))
Expand Down
8 changes: 1 addition & 7 deletions include/asm-m32r/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* Copyright (C) 2004 Hirokazu Takata <takata at linux-m32r.org>
*/

#include <linux/types.h>
#include <asm/assembler.h>
#include <asm/system.h>

Expand All @@ -17,13 +18,6 @@
* resource counting etc..
*/

/*
* Make sure gcc doesn't try to be clever and move things around
* on us. We need to use _exactly_ the address the user gave us,
* not some alias that contains the same information.
*/
typedef struct { volatile int counter; } atomic_t;

#define ATOMIC_INIT(i) { (i) }

/**
Expand Down
3 changes: 1 addition & 2 deletions include/asm-m68k/atomic.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef __ARCH_M68K_ATOMIC__
#define __ARCH_M68K_ATOMIC__


#include <linux/types.h>
#include <asm/system.h>

/*
Expand All @@ -13,7 +13,6 @@
* We do not have SMP m68k systems, so we don't have to deal with that.
*/

typedef struct { int counter; } atomic_t;
#define ATOMIC_INIT(i) { (i) }

#define atomic_read(v) ((v)->counter)
Expand Down
9 changes: 0 additions & 9 deletions include/asm-mn10300/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,6 @@
* resource counting etc..
*/

/*
* Make sure gcc doesn't try to be clever and move things around
* on us. We need to use _exactly_ the address the user gave us,
* not some alias that contains the same information.
*/
typedef struct {
int counter;
} atomic_t;

#define ATOMIC_INIT(i) { (i) }

#ifdef __KERNEL__
Expand Down
Loading

0 comments on commit ea43546

Please sign in to comment.