* FAILED: patch "[PATCH] parisc: Remove unnecessary barriers from spinlock.h" failed to apply to 4.14-stable tree
@ 2018-08-22 11:29 gregkh
2018-08-22 12:55 ` Helge Deller
0 siblings, 1 reply; 3+ messages in thread
From: gregkh @ 2018-08-22 11:29 UTC (permalink / raw)
To: dave.anglin, deller; +Cc: stable
The patch below does not apply to the 4.14-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable@vger.kernel.org>.
thanks,
greg k-h
------------------ original commit in Linus's tree ------------------
>From 3b885ac1dc35b87a39ee176a6c7e2af9c789d8b8 Mon Sep 17 00:00:00 2001
From: John David Anglin <dave.anglin@bell.net>
Date: Sun, 12 Aug 2018 16:31:17 -0400
Subject: [PATCH] parisc: Remove unnecessary barriers from spinlock.h
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Now that mb() is an instruction barrier, it will slow performance if we issue
unnecessary barriers.
The spinlock defines have a number of unnecessary barriers. The __ldcw()
define is both a hardware and compiler barrier. The mb() barriers in the
routines using __ldcw() serve no purpose.
The only barrier needed is the one in arch_spin_unlock(). We need to ensure
all accesses are complete prior to releasing the lock.
Signed-off-by: John David Anglin <dave.anglin@bell.net>
Cc: stable@vger.kernel.org # 4.0+
Signed-off-by: Helge Deller <deller@gmx.de>
diff --git a/arch/parisc/include/asm/spinlock.h b/arch/parisc/include/asm/spinlock.h
index 6f84b6acc86e..8a63515f03bf 100644
--- a/arch/parisc/include/asm/spinlock.h
+++ b/arch/parisc/include/asm/spinlock.h
@@ -20,7 +20,6 @@ static inline void arch_spin_lock_flags(arch_spinlock_t *x,
{
volatile unsigned int *a;
- mb();
a = __ldcw_align(x);
while (__ldcw(a) == 0)
while (*a == 0)
@@ -30,17 +29,16 @@ static inline void arch_spin_lock_flags(arch_spinlock_t *x,
local_irq_disable();
} else
cpu_relax();
- mb();
}
#define arch_spin_lock_flags arch_spin_lock_flags
static inline void arch_spin_unlock(arch_spinlock_t *x)
{
volatile unsigned int *a;
- mb();
+
a = __ldcw_align(x);
- *a = 1;
mb();
+ *a = 1;
}
static inline int arch_spin_trylock(arch_spinlock_t *x)
@@ -48,10 +46,8 @@ static inline int arch_spin_trylock(arch_spinlock_t *x)
volatile unsigned int *a;
int ret;
- mb();
a = __ldcw_align(x);
ret = __ldcw(a) != 0;
- mb();
return ret;
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: FAILED: patch "[PATCH] parisc: Remove unnecessary barriers from spinlock.h" failed to apply to 4.14-stable tree
2018-08-22 11:29 FAILED: patch "[PATCH] parisc: Remove unnecessary barriers from spinlock.h" failed to apply to 4.14-stable tree gregkh
@ 2018-08-22 12:55 ` Helge Deller
2018-08-22 13:37 ` Greg KH
0 siblings, 1 reply; 3+ messages in thread
From: Helge Deller @ 2018-08-22 12:55 UTC (permalink / raw)
To: gregkh, John David Anglin; +Cc: deller, stable
* gregkh@linuxfoundation.org <gregkh@linuxfoundation.org>:
> The patch below does not apply to the 4.14-stable tree.
> If someone wants it applied there, or to any other stable or longterm
> tree, then please email the backport, including the original git commit
> id to <stable@vger.kernel.org>.
Upstream commit ID 3b885ac1dc35b87a39ee176a6c7e2af9c789d8b8 was tagged
to be backported to v4.0+.
It applied cleanly to v4.17 and v4.18.
It did not applied to v4.14 and below (to v4.0).
Here is the backport which should apply.
Thanks!
Helge
diff --git a/arch/parisc/include/asm/spinlock.h b/arch/parisc/include/asm/spinlock.h
index e32936cd7f10..7031483b110c 100644
--- a/arch/parisc/include/asm/spinlock.h
+++ b/arch/parisc/include/asm/spinlock.h
@@ -26,7 +26,6 @@ static inline void arch_spin_lock_flags(arch_spinlock_t *x,
{
volatile unsigned int *a;
- mb();
a = __ldcw_align(x);
while (__ldcw(a) == 0)
while (*a == 0)
@@ -36,16 +35,15 @@ static inline void arch_spin_lock_flags(arch_spinlock_t *x,
local_irq_disable();
} else
cpu_relax();
- mb();
}
static inline void arch_spin_unlock(arch_spinlock_t *x)
{
volatile unsigned int *a;
- mb();
+
a = __ldcw_align(x);
- *a = 1;
mb();
+ *a = 1;
}
static inline int arch_spin_trylock(arch_spinlock_t *x)
@@ -53,10 +51,8 @@ static inline int arch_spin_trylock(arch_spinlock_t *x)
volatile unsigned int *a;
int ret;
- mb();
a = __ldcw_align(x);
ret = __ldcw(a) != 0;
- mb();
return ret;
}
>
> ------------------ original commit in Linus's tree ------------------
>
> From 3b885ac1dc35b87a39ee176a6c7e2af9c789d8b8 Mon Sep 17 00:00:00 2001
> From: John David Anglin <dave.anglin@bell.net>
> Date: Sun, 12 Aug 2018 16:31:17 -0400
> Subject: [PATCH] parisc: Remove unnecessary barriers from spinlock.h
> MIME-Version: 1.0
> Content-Type: text/plain; charset=UTF-8
> Content-Transfer-Encoding: 8bit
>
> Now that mb() is an instruction barrier, it will slow performance if we issue
> unnecessary barriers.
>
> The spinlock defines have a number of unnecessary barriers.ᅵ The __ldcw()
> define is both a hardware and compiler barrier.ᅵ The mb() barriers in the
> routines using __ldcw() serve no purpose.
>
> The only barrier needed is the one in arch_spin_unlock().ᅵ We need to ensure
> all accesses are complete prior to releasing the lock.
>
> Signed-off-by: John David Anglin <dave.anglin@bell.net>
> Cc: stable@vger.kernel.org # 4.0+
> Signed-off-by: Helge Deller <deller@gmx.de>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: FAILED: patch "[PATCH] parisc: Remove unnecessary barriers from spinlock.h" failed to apply to 4.14-stable tree
2018-08-22 12:55 ` Helge Deller
@ 2018-08-22 13:37 ` Greg KH
0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2018-08-22 13:37 UTC (permalink / raw)
To: Helge Deller; +Cc: John David Anglin, stable
On Wed, Aug 22, 2018 at 02:55:16PM +0200, Helge Deller wrote:
> * gregkh@linuxfoundation.org <gregkh@linuxfoundation.org>:
> > The patch below does not apply to the 4.14-stable tree.
> > If someone wants it applied there, or to any other stable or longterm
> > tree, then please email the backport, including the original git commit
> > id to <stable@vger.kernel.org>.
>
>
> Upstream commit ID 3b885ac1dc35b87a39ee176a6c7e2af9c789d8b8 was tagged
> to be backported to v4.0+.
>
> It applied cleanly to v4.17 and v4.18.
> It did not applied to v4.14 and below (to v4.0).
>
> Here is the backport which should apply.
Thanks, now queued up.
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-08-22 17:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-22 11:29 FAILED: patch "[PATCH] parisc: Remove unnecessary barriers from spinlock.h" failed to apply to 4.14-stable tree gregkh
2018-08-22 12:55 ` Helge Deller
2018-08-22 13:37 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox