提交 e69b742a 编写于 作者: B Benjamin Herrenschmidt

powerpc/ptrace: Fix build with gcc 4.6

gcc (rightfully) complains that we are accessing beyond the
end of the fpr array (we do, to access the fpscr).

The only sane thing to do (whether anything in that code can be
called remotely sane is debatable) is to special case fpscr and
handle it as a separate statement.

I initially tried to do it it by making the array access conditional
to index < PT_FPSCR and using a 3rd else leg but for some reason gcc
was unable to understand it and still spewed the warning.

So I ended up with something a tad more intricated but it seems to
build on 32-bit and on 64-bit with and without VSX.
Signed-off-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
上级 66857b3a
...@@ -1497,9 +1497,14 @@ long arch_ptrace(struct task_struct *child, long request, ...@@ -1497,9 +1497,14 @@ long arch_ptrace(struct task_struct *child, long request,
if (index < PT_FPR0) { if (index < PT_FPR0) {
tmp = ptrace_get_reg(child, (int) index); tmp = ptrace_get_reg(child, (int) index);
} else { } else {
unsigned int fpidx = index - PT_FPR0;
flush_fp_to_thread(child); flush_fp_to_thread(child);
if (fpidx < (PT_FPSCR - PT_FPR0))
tmp = ((unsigned long *)child->thread.fpr) tmp = ((unsigned long *)child->thread.fpr)
[TS_FPRWIDTH * (index - PT_FPR0)]; [fpidx * TS_FPRWIDTH];
else
tmp = child->thread.fpscr.val;
} }
ret = put_user(tmp, datalp); ret = put_user(tmp, datalp);
break; break;
...@@ -1525,9 +1530,14 @@ long arch_ptrace(struct task_struct *child, long request, ...@@ -1525,9 +1530,14 @@ long arch_ptrace(struct task_struct *child, long request,
if (index < PT_FPR0) { if (index < PT_FPR0) {
ret = ptrace_put_reg(child, index, data); ret = ptrace_put_reg(child, index, data);
} else { } else {
unsigned int fpidx = index - PT_FPR0;
flush_fp_to_thread(child); flush_fp_to_thread(child);
if (fpidx < (PT_FPSCR - PT_FPR0))
((unsigned long *)child->thread.fpr) ((unsigned long *)child->thread.fpr)
[TS_FPRWIDTH * (index - PT_FPR0)] = data; [fpidx * TS_FPRWIDTH] = data;
else
child->thread.fpscr.val = data;
ret = 0; ret = 0;
} }
break; break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册