All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: fix PTRACE_SETVFPREGS on SMP systems
@ 2016-05-31 18:15 Russell King
  2016-05-31 18:20 ` Will Deacon
  0 siblings, 1 reply; 2+ messages in thread
From: Russell King @ 2016-05-31 18:15 UTC (permalink / raw)
  To: linux-arm-kernel

PTRACE_SETVFPREGS fails to properly mark the VFP register set to be
reloaded, because it undoes one of the effects of vfp_flush_hwstate().

Specifically vfp_flush_hwstate() sets thread->vfpstate.hard.cpu to
an invalid CPU number, but vfp_set() overwrites this with the original
CPU number, thereby rendering the hardware state as apparently "valid",
even though the software state is more recent.

Fix this by reverting the previous change.

Cc: <stable@vger.kernel.org>
Fixes: 8130b9d7b9d8 ("ARM: 7308/1: vfp: flush thread hwstate before copying ptrace registers")
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
---
Will, please ack this.

 arch/arm/kernel/ptrace.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/kernel/ptrace.c b/arch/arm/kernel/ptrace.c
index ef9119f7462e..4d9375814b53 100644
--- a/arch/arm/kernel/ptrace.c
+++ b/arch/arm/kernel/ptrace.c
@@ -733,8 +733,8 @@ static int vfp_set(struct task_struct *target,
 	if (ret)
 		return ret;
 
-	vfp_flush_hwstate(thread);
 	thread->vfpstate.hard = new_vfp;
+	vfp_flush_hwstate(thread);
 
 	return 0;
 }
-- 
2.1.0

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

* [PATCH] ARM: fix PTRACE_SETVFPREGS on SMP systems
  2016-05-31 18:15 [PATCH] ARM: fix PTRACE_SETVFPREGS on SMP systems Russell King
@ 2016-05-31 18:20 ` Will Deacon
  0 siblings, 0 replies; 2+ messages in thread
From: Will Deacon @ 2016-05-31 18:20 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, May 31, 2016 at 07:15:03PM +0100, Russell King wrote:
> PTRACE_SETVFPREGS fails to properly mark the VFP register set to be
> reloaded, because it undoes one of the effects of vfp_flush_hwstate().
> 
> Specifically vfp_flush_hwstate() sets thread->vfpstate.hard.cpu to
> an invalid CPU number, but vfp_set() overwrites this with the original
> CPU number, thereby rendering the hardware state as apparently "valid",
> even though the software state is more recent.
> 
> Fix this by reverting the previous change.
> 
> Cc: <stable@vger.kernel.org>
> Fixes: 8130b9d7b9d8 ("ARM: 7308/1: vfp: flush thread hwstate before copying ptrace registers")
> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
> ---
> Will, please ack this.

Acked-by: Will Deacon <will.deacon@arm.com>

Will

> 
>  arch/arm/kernel/ptrace.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/kernel/ptrace.c b/arch/arm/kernel/ptrace.c
> index ef9119f7462e..4d9375814b53 100644
> --- a/arch/arm/kernel/ptrace.c
> +++ b/arch/arm/kernel/ptrace.c
> @@ -733,8 +733,8 @@ static int vfp_set(struct task_struct *target,
>  	if (ret)
>  		return ret;
>  
> -	vfp_flush_hwstate(thread);
>  	thread->vfpstate.hard = new_vfp;
> +	vfp_flush_hwstate(thread);
>  
>  	return 0;
>  }
> -- 
> 2.1.0
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
> 

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

end of thread, other threads:[~2016-05-31 18:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-31 18:15 [PATCH] ARM: fix PTRACE_SETVFPREGS on SMP systems Russell King
2016-05-31 18:20 ` Will Deacon

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.