commit | 6b4977ce0fb9a989ba24fd6b757d07a566abc23d | [log] [tgz] |
---|---|---|
author | Kyle McMartin <kyle@parisc-linux.org> | Sun Jan 15 12:10:55 2006 -0500 |
committer | Linus Torvalds <torvalds@g5.osdl.org> | Sun Jan 15 10:17:07 2006 -0800 |
tree | a65447b794fe9c9f15c34565c3b5fccc22d261d5 | |
parent | 69ff56c166629224e9fe914b8543021dc2f001f0 [diff] |
[PATCH] Use atomic64_set for 64-bit case of atomic_long_set For some reason, the BITS_PER_LONG == 64 case of atomic_long_set was using atomic_set instead of atomic64_set. This does not jive with architectures which use an inline instead of a #define to implement their atomic_set() primitives. Signed-off-by: Kyle McMartin <kyle@parisc-linux.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>