diff options
author | Roland McGrath <roland@redhat.com> | 2008-02-21 23:37:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-22 10:35:06 -0500 |
commit | f9cb02b0be4de3c51edfdd701754e13d9a2d20d6 (patch) | |
tree | ea7b327915363d00d57494031ba32ae6f900ab2c /arch | |
parent | 1a4c6be4aca5ad6b300932efed1e2729fdc25af9 (diff) |
x86 ptrace: fix compat PTRACE_SETREGS
Simple typo fix for regression introduced by the user_regset changes.
Signed-off-by: Roland McGrath <roland@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/ptrace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/ptrace.c b/arch/x86/kernel/ptrace.c index 702c33efea84..d862e396b099 100644 --- a/arch/x86/kernel/ptrace.c +++ b/arch/x86/kernel/ptrace.c | |||
@@ -1160,7 +1160,7 @@ static int genregs32_set(struct task_struct *target, | |||
1160 | if (kbuf) { | 1160 | if (kbuf) { |
1161 | const compat_ulong_t *k = kbuf; | 1161 | const compat_ulong_t *k = kbuf; |
1162 | while (count > 0 && !ret) { | 1162 | while (count > 0 && !ret) { |
1163 | ret = putreg(target, pos, *k++); | 1163 | ret = putreg32(target, pos, *k++); |
1164 | count -= sizeof(*k); | 1164 | count -= sizeof(*k); |
1165 | pos += sizeof(*k); | 1165 | pos += sizeof(*k); |
1166 | } | 1166 | } |
@@ -1171,7 +1171,7 @@ static int genregs32_set(struct task_struct *target, | |||
1171 | ret = __get_user(word, u++); | 1171 | ret = __get_user(word, u++); |
1172 | if (ret) | 1172 | if (ret) |
1173 | break; | 1173 | break; |
1174 | ret = putreg(target, pos, word); | 1174 | ret = putreg32(target, pos, word); |
1175 | count -= sizeof(*u); | 1175 | count -= sizeof(*u); |
1176 | pos += sizeof(*u); | 1176 | pos += sizeof(*u); |
1177 | } | 1177 | } |