On Thu, Mar 20, 2014 at 11:03 AM, Davidlohr Bueso <davidl...@hp.com> wrote: > > I still wonder about ppc and spinlocks (no ticketing!!) ... sure the > "waiters" patch might fix the problem just because we explicitly count > the members of the plist. And I guess if we cannot rely on all archs > having an equivalent spinlock implementation, we simply cannot use this > technique for futexes.
So the ticketing part means that on x86 we see pending waiters even when a previous one does "spin_unlock()". I agree that that is a fundamental difference between x86 and powerpc, and it does seem to be the most likely culprit. And dammit, I *liked* my "don't use an explicit waiter count" approach, so I'd love to be able to do it. But I we've never really guaranteed that "is_spin_locked()" shows whether there are spinners, so I don't know how to do that. I guess we could expose some interface for the spinlock code to say whether it supports that or not, and then switch between the two algorithms. But that just feels very very ugly to me. But let's see if the explicit waiter count version even solves the thing on powerpc. Maybe it's something else, and we'll have to revert entirely for now. Linus _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev