diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-01-12 04:05:38 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 12:08:51 -0500 |
commit | e4f17c436f8e4241995c2531372be8dd7ea6ff75 (patch) | |
tree | ac797b8402c9a44182f16b76ffc13559d6c0edb3 /arch/x86_64/kernel/process.c | |
parent | e52f4ca2a7cfea3495cabae23d48f1538f09ccf2 (diff) |
[PATCH] amd64: task_thread_info()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/kernel/process.c')
-rw-r--r-- | arch/x86_64/kernel/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/process.c b/arch/x86_64/kernel/process.c index 669cf0ed3266..2ea4acd47fc2 100644 --- a/arch/x86_64/kernel/process.c +++ b/arch/x86_64/kernel/process.c | |||
@@ -463,7 +463,7 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long rsp, | |||
463 | p->thread.rsp0 = (unsigned long) (childregs+1); | 463 | p->thread.rsp0 = (unsigned long) (childregs+1); |
464 | p->thread.userrsp = me->thread.userrsp; | 464 | p->thread.userrsp = me->thread.userrsp; |
465 | 465 | ||
466 | set_ti_thread_flag(p->thread_info, TIF_FORK); | 466 | set_tsk_thread_flag(p, TIF_FORK); |
467 | 467 | ||
468 | p->thread.fs = me->thread.fs; | 468 | p->thread.fs = me->thread.fs; |
469 | p->thread.gs = me->thread.gs; | 469 | p->thread.gs = me->thread.gs; |