Commit b0f8d64a authored by Russell King's avatar Russell King Committed by Sasha Levin

ARM: fix PTRACE_SETVFPREGS on SMP systems

[ Upstream commit e2dfb4b8 ]

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: 8130b9d7 ("ARM: 7308/1: vfp: flush thread hwstate before copying ptrace registers")
Acked-by: default avatarWill Deacon <will.deacon@arm.com>
Tested-by: default avatarSimon Marchi <simon.marchi@ericsson.com>
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
parent 6a962d0a
...@@ -733,8 +733,8 @@ static int vfp_set(struct task_struct *target, ...@@ -733,8 +733,8 @@ static int vfp_set(struct task_struct *target,
if (ret) if (ret)
return ret; return ret;
vfp_flush_hwstate(thread);
thread->vfpstate.hard = new_vfp; thread->vfpstate.hard = new_vfp;
vfp_flush_hwstate(thread);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment