]> git.baikalelectronics.ru Git - kernel.git/commit
MIPS: prevent FP context set via ptrace being discarded
authorPaul Burton <paul.burton@imgtec.com>
Fri, 30 Jan 2015 12:09:36 +0000 (12:09 +0000)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 27 Mar 2015 18:42:47 +0000 (19:42 +0100)
commit19704332ab608e503d27464163b7c0c8698bbce5
treea20d7c8a6902de00b96c14d675a38af8d4b50363
parent08e9131d708612cf2d663504d05719de77756da3
MIPS: prevent FP context set via ptrace being discarded

If a ptracee has not used the FPU and the ptracer sets its FP context
using PTRACE_POKEUSR, PTRACE_SETFPREGS or PTRACE_SETREGSET then that
context will be discarded upon either the ptracee using the FPU or a
further write to the context via ptrace. Prevent this loss by recording
that the task has "used" math once its FP context has been written to.
The context initialisation code that was present for the PTRACE_POKEUSR
case is reused for the other 2 cases to provide consistent behaviour
for the different ptrace requests.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/9166/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/ptrace.c