diff mbox series

parisc: Replace sync instruction by nop on UP kernel

Message ID 20181109210431.GA25285@ls3530.dellerweb.de (mailing list archive)
State Rejected
Headers show
Series parisc: Replace sync instruction by nop on UP kernel | expand

Commit Message

Helge Deller Nov. 9, 2018, 9:04 p.m. UTC
Signed-off-by: Helge Deller <deller@gmx.de>

Comments

John David Anglin Nov. 11, 2018, 3:42 p.m. UTC | #1
On 2018-11-09 4:04 p.m., Helge Deller wrote:
> Signed-off-by: Helge Deller <deller@gmx.de>
>
> diff --git a/arch/parisc/include/asm/barrier.h b/arch/parisc/include/asm/barrier.h
> index dbaaca84f27f..43bcdccc56b8 100644
> --- a/arch/parisc/include/asm/barrier.h
> +++ b/arch/parisc/include/asm/barrier.h
> @@ -6,7 +6,8 @@
>   
>   /* The synchronize caches instruction executes as a nop on systems in
>      which all memory references are performed in order. */
> -#define synchronize_caches() __asm__ __volatile__ ("sync" : : : "memory")
> +#define synchronize_caches() asm volatile \
> +	("sync" ALTERNATIVE(ALT_COND_NO_SMP, INSN_NOP) : : : "memory")
>   
>   #if defined(CONFIG_SMP)
>   #define mb()		do { synchronize_caches(); } while (0)
Although this change is consistent with mb() on UP kernels, I'm thinking 
that it is wrong.  That is
the PA 2.0 out-of-order execution of memory accesses is likely visible 
on a UP machine when an
interruption occurs.  I think the UP and SMP defines for mb() need to be 
the same.

Dave
Helge Deller Nov. 11, 2018, 7:43 p.m. UTC | #2
On 11.11.2018 16:42, John David Anglin wrote:
> On 2018-11-09 4:04 p.m., Helge Deller wrote:
>> Signed-off-by: Helge Deller <deller@gmx.de>
>>
>> diff --git a/arch/parisc/include/asm/barrier.h b/arch/parisc/include/asm/barrier.h
>> index dbaaca84f27f..43bcdccc56b8 100644
>> --- a/arch/parisc/include/asm/barrier.h
>> +++ b/arch/parisc/include/asm/barrier.h
>> @@ -6,7 +6,8 @@
>>     /* The synchronize caches instruction executes as a nop on systems in
>>      which all memory references are performed in order. */
>> -#define synchronize_caches() __asm__ __volatile__ ("sync" : : : "memory")
>> +#define synchronize_caches() asm volatile \
>> +    ("sync" ALTERNATIVE(ALT_COND_NO_SMP, INSN_NOP) : : : "memory")
>>     #if defined(CONFIG_SMP)
>>   #define mb()        do { synchronize_caches(); } while (0)
> Although this change is consistent with mb() on UP kernels, I'm thinking that it is wrong.  That is
> the PA 2.0 out-of-order execution of memory accesses is likely visible on a UP machine when an
> interruption occurs.  I think the UP and SMP defines for mb() need to be the same.

I think you are right with the fact that the sync-removals in this patch and the other one was wrong.
I'll resend the patch without touching sync in a few moments.
I'll keep the remaining patches in my for-next-next git branch.

Helge
diff mbox series

Patch

diff --git a/arch/parisc/include/asm/barrier.h b/arch/parisc/include/asm/barrier.h
index dbaaca84f27f..43bcdccc56b8 100644
--- a/arch/parisc/include/asm/barrier.h
+++ b/arch/parisc/include/asm/barrier.h
@@ -6,7 +6,8 @@ 
 
 /* The synchronize caches instruction executes as a nop on systems in
    which all memory references are performed in order. */
-#define synchronize_caches() __asm__ __volatile__ ("sync" : : : "memory")
+#define synchronize_caches() asm volatile \
+	("sync" ALTERNATIVE(ALT_COND_NO_SMP, INSN_NOP) : : : "memory")
 
 #if defined(CONFIG_SMP)
 #define mb()		do { synchronize_caches(); } while (0)