All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arm64: spinlock: clarify implementation details of arch_spin_lock
@ 2016-09-01 10:47 Vladimir Murzin
  2016-09-01 11:27 ` Will Deacon
  0 siblings, 1 reply; 3+ messages in thread
From: Vladimir Murzin @ 2016-09-01 10:47 UTC (permalink / raw)
  To: linux-arm-kernel

It seems to be quite confusing to see atomic load not being paired
with atomic store down to arch_spin_lock function. To prevent the same
questions/patches around this add a comment block explaining what is
going on there.

The comment has been stolen from Catalin's reply [1].

[1] https://lkml.org/lkml/2016/8/30/127

Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com>
---
 arch/arm64/include/asm/spinlock.h |   12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/arch/arm64/include/asm/spinlock.h b/arch/arm64/include/asm/spinlock.h
index e875a5a..9a2155c 100644
--- a/arch/arm64/include/asm/spinlock.h
+++ b/arch/arm64/include/asm/spinlock.h
@@ -113,6 +113,18 @@ static inline void arch_spin_lock(arch_spinlock_t *lock)
 	 */
 "	sevl\n"
 "2:	wfe\n"
+	/*
+	 * Don't be confused with atomic load bellow not being paired
+	 * with atomic store. This is needed because the
+	 * arch_spin_unlock() code only uses an STLR without an
+	 * explicit SEV (like we have on AArch32). An event is
+	 * automatically generated when the exclusive monitor is
+	 * cleared by STLR. But without setting it with a load
+	 * exclusive in arch_spin_lock() (even though it does not
+	 * acquire the lock), there won't be anything to clear, hence
+	 * no event to be generated. In this case, the WFE would wait
+	 * indefinitely.
+	 */
 "	ldaxrh	%w2, %4\n"
 "	eor	%w1, %w2, %w0, lsr #16\n"
 "	cbnz	%w1, 2b\n"
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] arm64: spinlock: clarify implementation details of arch_spin_lock
  2016-09-01 10:47 [PATCH] arm64: spinlock: clarify implementation details of arch_spin_lock Vladimir Murzin
@ 2016-09-01 11:27 ` Will Deacon
  2016-09-01 11:54   ` Vladimir Murzin
  0 siblings, 1 reply; 3+ messages in thread
From: Will Deacon @ 2016-09-01 11:27 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Sep 01, 2016 at 11:47:00AM +0100, Vladimir Murzin wrote:
> It seems to be quite confusing to see atomic load not being paired
> with atomic store down to arch_spin_lock function. To prevent the same
> questions/patches around this add a comment block explaining what is
> going on there.
> 
> The comment has been stolen from Catalin's reply [1].
> 
> [1] https://lkml.org/lkml/2016/8/30/127
> 
> Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com>
> ---
>  arch/arm64/include/asm/spinlock.h |   12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/arch/arm64/include/asm/spinlock.h b/arch/arm64/include/asm/spinlock.h
> index e875a5a..9a2155c 100644
> --- a/arch/arm64/include/asm/spinlock.h
> +++ b/arch/arm64/include/asm/spinlock.h
> @@ -113,6 +113,18 @@ static inline void arch_spin_lock(arch_spinlock_t *lock)
>  	 */
>  "	sevl\n"
>  "2:	wfe\n"
> +	/*
> +	 * Don't be confused with atomic load bellow not being paired
> +	 * with atomic store. This is needed because the
> +	 * arch_spin_unlock() code only uses an STLR without an
> +	 * explicit SEV (like we have on AArch32). An event is
> +	 * automatically generated when the exclusive monitor is
> +	 * cleared by STLR. But without setting it with a load
> +	 * exclusive in arch_spin_lock() (even though it does not
> +	 * acquire the lock), there won't be anything to clear, hence
> +	 * no event to be generated. In this case, the WFE would wait
> +	 * indefinitely.
> +	 */

So the purpose of our spin_lock implementation is to provide a spin_lock
primitive to kernel code which follows the semantics of Linux spin locks.
It's not intended to teach people the ARMv8 architecture.

If we comment this (and I don't think your comment is necessarily helpful),
then do we also comment arch_spin_unlock_wait, __cmpwait, the rwlocks, ...?

At some point we have to assume that people attempting to understand the
low-level locking primitives for an architecture will bother to read the
documentation :/ Hell, the ARMv8 ARM even has an example ticket lock
implementation in "K10.3.4 Use of Wait For Event (WFE) and Send Event
(SEV) with locks" that uses this trick.

Will

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] arm64: spinlock: clarify implementation details of arch_spin_lock
  2016-09-01 11:27 ` Will Deacon
@ 2016-09-01 11:54   ` Vladimir Murzin
  0 siblings, 0 replies; 3+ messages in thread
From: Vladimir Murzin @ 2016-09-01 11:54 UTC (permalink / raw)
  To: linux-arm-kernel

On 01/09/16 12:27, Will Deacon wrote:
> On Thu, Sep 01, 2016 at 11:47:00AM +0100, Vladimir Murzin wrote:
>> It seems to be quite confusing to see atomic load not being paired
>> with atomic store down to arch_spin_lock function. To prevent the same
>> questions/patches around this add a comment block explaining what is
>> going on there.
>>
>> The comment has been stolen from Catalin's reply [1].
>>
>> [1] https://lkml.org/lkml/2016/8/30/127
>>
>> Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com>
>> ---
>>  arch/arm64/include/asm/spinlock.h |   12 ++++++++++++
>>  1 file changed, 12 insertions(+)
>>
>> diff --git a/arch/arm64/include/asm/spinlock.h b/arch/arm64/include/asm/spinlock.h
>> index e875a5a..9a2155c 100644
>> --- a/arch/arm64/include/asm/spinlock.h
>> +++ b/arch/arm64/include/asm/spinlock.h
>> @@ -113,6 +113,18 @@ static inline void arch_spin_lock(arch_spinlock_t *lock)
>>  	 */
>>  "	sevl\n"
>>  "2:	wfe\n"
>> +	/*
>> +	 * Don't be confused with atomic load bellow not being paired
>> +	 * with atomic store. This is needed because the
>> +	 * arch_spin_unlock() code only uses an STLR without an
>> +	 * explicit SEV (like we have on AArch32). An event is
>> +	 * automatically generated when the exclusive monitor is
>> +	 * cleared by STLR. But without setting it with a load
>> +	 * exclusive in arch_spin_lock() (even though it does not
>> +	 * acquire the lock), there won't be anything to clear, hence
>> +	 * no event to be generated. In this case, the WFE would wait
>> +	 * indefinitely.
>> +	 */
> 
> So the purpose of our spin_lock implementation is to provide a spin_lock
> primitive to kernel code which follows the semantics of Linux spin locks.
> It's not intended to teach people the ARMv8 architecture.
> 
> If we comment this (and I don't think your comment is necessarily helpful),
> then do we also comment arch_spin_unlock_wait, __cmpwait, the rwlocks, ...?
> 
> At some point we have to assume that people attempting to understand the
> low-level locking primitives for an architecture will bother to read the
> documentation :/ Hell, the ARMv8 ARM even has an example ticket lock
> implementation in "K10.3.4 Use of Wait For Event (WFE) and Send Event
> (SEV) with locks" that uses this trick.
> 

So, NAK? ;)

Cheers
Vladimir

> Will
> 
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-09-01 11:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-01 10:47 [PATCH] arm64: spinlock: clarify implementation details of arch_spin_lock Vladimir Murzin
2016-09-01 11:27 ` Will Deacon
2016-09-01 11:54   ` Vladimir Murzin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.