On 06/29/2013 01:45 PM, Linus Torvalds wrote:
But more importantly, I think this needs to be architecture-specific,
and using<linux/spinlock_refcount.h> to try to do some generic 64-bit
cmpxchg() version is a bad bad idea.
Yes, I can put the current implementation into asm-generic/spinlock_refcount.h. Now I need to put an asm/spinlock_refcount.h into every arch's include/asm directory. Right? I don't think there is a mechanism in the build script to create a symlink from asm to generic-asm when a header file is missing. Is it the general rule that we should have a linux/spinlock_refcount.h that include asm/spinlock_refcount.h instead of including asm/spinlock_refcount.h directly?
We have several architectures coming up that have memory transaction
support, and the "spinlock with refcount" is a perfect candidate for a
transactional memory implementation. So when introducing a new atomic
like this that is very performance-critical and used for some very
core code, I really think architectures would want to make their own
optimized versions.
These things should also not be inlined, I think.