On Tue, Jul 07, 2015 at 03:28:13PM -0400, Waiman Long wrote: > #ifndef queued_inc_reader_return > static inline u32 queued_inc_reader_return(struct qrwlock *lock) That's actually a misleading name, we don't do an inc_return, we do a fetch_inc. > { > return atomic_add_return(_QR_BIAS, &lock->cnts) - _QR_BIAS; > } > #endif With that you (Will) could even reuse the ll/sc load and avoid issuing a second load. You basically need atomic_fetch_add_relaxed(). -- To unsubscribe from this list: send the line "unsubscribe linux-arch" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html