Skip to content

Commit

Permalink
[PARISC] Make local_t use atomic_long_t
Browse files Browse the repository at this point in the history
As done in asm-generic/local.h in mainline. Otherwise local_t was 32-bit
even on a 64-bit kernel.

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
  • Loading branch information
Kyle McMartin authored and Kyle McMartin committed Mar 30, 2006
1 parent 6f0b451 commit 2746ae1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/asm-parisc/local.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
#include <linux/percpu.h>
#include <asm/atomic.h>

typedef atomic_t local_t;
typedef atomic_long_t local_t;

#define LOCAL_INIT(i) ATOMIC_INIT(i)
#define local_read(v) atomic_read(v)
#define local_set(v,i) atomic_set(v,i)
#define LOCAL_INIT(i) ATOMIC_LONG_INIT(i)
#define local_read(v) atomic_long_read(v)
#define local_set(v,i) atomic_long_set(v,i)

#define local_inc(v) atomic_inc(v)
#define local_dec(v) atomic_dec(v)
#define local_add(i, v) atomic_add(i, v)
#define local_sub(i, v) atomic_sub(i, v)
#define local_inc(v) atomic_long_inc(v)
#define local_dec(v) atomic_long_dec(v)
#define local_add(i, v) atomic_long_add(i, v)
#define local_sub(i, v) atomic_long_sub(i, v)

#define __local_inc(v) ((v)->counter++)
#define __local_dec(v) ((v)->counter--)
Expand Down

0 comments on commit 2746ae1

Please sign in to comment.