Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

ARM: fix PTRACE_SETVFPREGS on SMP systems



[ Upstream commit e2dfb4b880146bfd4b6aa8e138c0205407cebbaf ]

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}