projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c744ea
)
tile/ptrace: Preserve previous registers for short regset write
author
Dave Martin
<Dave.Martin@arm.com>
Fri, 6 Jan 2017 17:54:51 +0000
(17:54 +0000)
committer
Chris Metcalf
<cmetcalf@mellanox.com>
Fri, 6 Jan 2017 20:14:08 +0000
(15:14 -0500)
Ensure that if userspace supplies insufficient data to
PTRACE_SETREGSET to fill all the registers, the thread's old
registers are preserved.
Cc: stable@vger.kernel.org
Signed-off-by: Dave Martin <Dave.Martin@arm.com>
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
arch/tile/kernel/ptrace.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/tile/kernel/ptrace.c
b/arch/tile/kernel/ptrace.c
index d89b7011667cb4f1a6f3ad55238d2c815e229c41..e279572824b15e07616b98215fb51c1fa65f4c9f 100644
(file)
--- a/
arch/tile/kernel/ptrace.c
+++ b/
arch/tile/kernel/ptrace.c
@@
-111,7
+111,7
@@
static int tile_gpr_set(struct task_struct *target,
const void *kbuf, const void __user *ubuf)
{
int ret;
- struct pt_regs regs;
+ struct pt_regs regs
= *task_pt_regs(target)
;
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, ®s, 0,
sizeof(regs));