aboutsummaryrefslogtreecommitdiffstats
path: root/arch/xtensa/kernel/ptrace.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/xtensa/kernel/ptrace.c')
-rw-r--r--arch/xtensa/kernel/ptrace.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/xtensa/kernel/ptrace.c b/arch/xtensa/kernel/ptrace.c
index c72c9473ef99..a0d042aa2967 100644
--- a/arch/xtensa/kernel/ptrace.c
+++ b/arch/xtensa/kernel/ptrace.c
@@ -147,6 +147,9 @@ int ptrace_setxregs(struct task_struct *child, void __user *uregs)
147 elf_xtregs_t *xtregs = uregs; 147 elf_xtregs_t *xtregs = uregs;
148 int ret = 0; 148 int ret = 0;
149 149
150 if (!access_ok(VERIFY_READ, uregs, sizeof(elf_xtregs_t)))
151 return -EFAULT;
152
150#if XTENSA_HAVE_COPROCESSORS 153#if XTENSA_HAVE_COPROCESSORS
151 /* Flush all coprocessors before we overwrite them. */ 154 /* Flush all coprocessors before we overwrite them. */
152 coprocessor_flush_all(ti); 155 coprocessor_flush_all(ti);