diff options
author | Bill Huey (hui <billh@gnuppy.monkey.org> | 2006-08-31 21:27:39 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-01 11:39:08 -0700 |
commit | d742eae8e2655a960b2e07f3f622d78546c14031 (patch) | |
tree | 66505da9522487897d86cfafd78844f174b4592b | |
parent | 35df17c57cecb08f0120fb18926325f1093dc429 (diff) | |
download | linux-3.10-d742eae8e2655a960b2e07f3f622d78546c14031.tar.gz linux-3.10-d742eae8e2655a960b2e07f3f622d78546c14031.tar.bz2 linux-3.10-d742eae8e2655a960b2e07f3f622d78546c14031.zip |
[PATCH] xtensa: ptrace: EXIT_ZOMBIE fix
We're testing the wrong task_struct field.
Acked-by: Chris Zankel <chris@zankel.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/xtensa/kernel/ptrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/kernel/ptrace.c b/arch/xtensa/kernel/ptrace.c index 5064d938396..9aea23cc0dc 100644 --- a/arch/xtensa/kernel/ptrace.c +++ b/arch/xtensa/kernel/ptrace.c @@ -212,7 +212,7 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) */ case PTRACE_KILL: ret = 0; - if (child->state == EXIT_ZOMBIE) /* already dead */ + if (child->exit_state == EXIT_ZOMBIE) /* already dead */ break; child->exit_code = SIGKILL; child->ptrace &= ~PT_SINGLESTEP; |