On Wed, Jan 15, 2014 at 6:44 AM, Paul E. McKenney <paul...@linux.vnet.ibm.com> wrote: > > Which means that Alpha should be able to similarly emulate 1-byte and > 2-byte atomics, correct?
Not reasonably, no. The ldl/stc implementation on early alpha was so broken as to be unusable. It's not actually done in the cache, it WENT OUT ON THE BUS. We're talking 70's style "external lock signal" kind of things like the 8086 did for locked cycles before the advent of caches, the kind that nobody sane has done for a long long time. So realistically, you absolutely do not want to use those things to emulate atomic byte/word accesses. The whole point of "load_acquire()" and "store_release()" is that it's supposed to be cheaper than a locked access, and can be done with just a barrier instruction or a special instruction flag. If you just want to do a store release, on alpha you'd want to implement that as a full memory barrier followed by a store. It doesn't get the advantage of a real release consistency model, but at least it's not doing an external bus access. But you can only do that store as a 4-byte or 8-byte store.on the older alphas (byte and word stores work on newer ones). Of course, it's entirely possible that nobody cares.. Linus -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/