提交 87fec051 编写于 作者: A Anton Blanchard 提交者: Benjamin Herrenschmidt

powerpc: PTRACE_PEEKUSR/PTRACE_POKEUSER of FPR registers in little endian builds

FPRs overlap the high 64bits of the first 32 VSX registers. The
ptrace FP read/write code assumes big endian ordering and grabs
the lowest 64 bits.

Fix this by using the TS_FPR macro which does the right thing.
Signed-off-by: NAnton Blanchard <anton@samba.org>
Signed-off-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
上级 e156bd8a
...@@ -1554,8 +1554,8 @@ long arch_ptrace(struct task_struct *child, long request, ...@@ -1554,8 +1554,8 @@ long arch_ptrace(struct task_struct *child, long request,
flush_fp_to_thread(child); flush_fp_to_thread(child);
if (fpidx < (PT_FPSCR - PT_FPR0)) if (fpidx < (PT_FPSCR - PT_FPR0))
tmp = ((unsigned long *)child->thread.fpr) memcpy(&tmp, &child->thread.TS_FPR(fpidx),
[fpidx * TS_FPRWIDTH]; sizeof(long));
else else
tmp = child->thread.fpscr.val; tmp = child->thread.fpscr.val;
} }
...@@ -1587,8 +1587,8 @@ long arch_ptrace(struct task_struct *child, long request, ...@@ -1587,8 +1587,8 @@ long arch_ptrace(struct task_struct *child, long request,
flush_fp_to_thread(child); flush_fp_to_thread(child);
if (fpidx < (PT_FPSCR - PT_FPR0)) if (fpidx < (PT_FPSCR - PT_FPR0))
((unsigned long *)child->thread.fpr) memcpy(&child->thread.TS_FPR(fpidx), &data,
[fpidx * TS_FPRWIDTH] = data; sizeof(long));
else else
child->thread.fpscr.val = data; child->thread.fpscr.val = data;
ret = 0; ret = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册