答复: [RFC] locking/rwsem: Avoid issuing wakeup before setting the reader waiter to nil

From: Liu,Qi(ACU-T1)
Date: Fri Nov 30 2018 - 05:21:26 EST


Is there a semantic divergence between x86 instruction "LOCK cmpxchg" and the macro cmpxchg defined in linux kernel? The former guarantee full barrier in any case, and the latter only imply barrier in case of success?
So, we use
smp_mb__before_atomic()
cmpxchg_relaxed() // no barrier
to get rid of the redundant barrier
smp_mb__before_atomic()
cmpxchg() // imply a redundant barrier when successing

-----邮件原件-----
发件人: Peter Zijlstra [mailto:peterz@xxxxxxxxxxxxx]
发送时间: 2018年11月30日 6:06
收件人: Waiman Long <longman@xxxxxxxxxx>
抄送: Will Deacon <will.deacon@xxxxxxx>; Yongji Xie <elohimes@xxxxxxxxx>; mingo@xxxxxxxxxx; linux-kernel@xxxxxxxxxxxxxxx; Xie,Yongji <xieyongji@xxxxxxxxx>; Zhang,Yu(ACU-T1) <zhangyu31@xxxxxxxxx>; Liu,Qi(ACU-T1) <liuqi16@xxxxxxxxx>; Yuan,Linsi <yuanlinsi01@xxxxxxxxx>; Ni,Xun <nixun@xxxxxxxxx>; Li,Lin(ACU-T1) <lilin24@xxxxxxxxx>; Davidlohr Bueso <dave@xxxxxxxxxxxx>
主题: Re: [RFC] locking/rwsem: Avoid issuing wakeup before setting the reader waiter to nil

On Thu, Nov 29, 2018 at 01:34:05PM -0500, Waiman Long wrote:

> That will certainly work for x86. However, I am not sure if that will
> be optimal for arm and powerpc.

smp_mb__before_atomic()
cmpxchg_relaxed()

works. Also see pv_kick_node()'s commit:

34d54f3d6917 ("locking/pvqspinlock: Relax cmpxchg's to improve performance on some architectures")

you might know the author of that :-)