|
@@ -315,9 +315,7 @@ do_sys_ptrace(long request, long pid, long addr, long data,
|
|
/* When I and D space are separate, this will have to be fixed. */
|
|
/* When I and D space are separate, this will have to be fixed. */
|
|
case PTRACE_POKETEXT: /* write the word at location addr. */
|
|
case PTRACE_POKETEXT: /* write the word at location addr. */
|
|
case PTRACE_POKEDATA:
|
|
case PTRACE_POKEDATA:
|
|
- tmp = data;
|
|
|
|
- copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 1);
|
|
|
|
- ret = (copied == sizeof(tmp)) ? 0 : -EIO;
|
|
|
|
|
|
+ ret = generic_ptrace_pokedata(child, addr, data);
|
|
break;
|
|
break;
|
|
|
|
|
|
case PTRACE_POKEUSR: /* write the specified register */
|
|
case PTRACE_POKEUSR: /* write the specified register */
|