diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-01-12 04:05:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 12:08:51 -0500 |
commit | 06b425d80f56280e698b3e8487c372e0d39d9ba1 (patch) | |
tree | 107f441a080074b5fdc16cf4d94632356b29a1e5 /arch/i386/kernel/process.c | |
parent | 57eafdc22c8e788859b67c2c7ac4d636716603a5 (diff) |
[PATCH] i386: 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/i386/kernel/process.c')
-rw-r--r-- | arch/i386/kernel/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/kernel/process.c b/arch/i386/kernel/process.c index 035928f3f6c1..5dd03757f50c 100644 --- a/arch/i386/kernel/process.c +++ b/arch/i386/kernel/process.c | |||
@@ -601,8 +601,8 @@ static inline void disable_tsc(struct task_struct *prev_p, | |||
601 | * gcc should eliminate the ->thread_info dereference if | 601 | * gcc should eliminate the ->thread_info dereference if |
602 | * has_secure_computing returns 0 at compile time (SECCOMP=n). | 602 | * has_secure_computing returns 0 at compile time (SECCOMP=n). |
603 | */ | 603 | */ |
604 | prev = prev_p->thread_info; | 604 | prev = task_thread_info(prev_p); |
605 | next = next_p->thread_info; | 605 | next = task_thread_info(next_p); |
606 | 606 | ||
607 | if (has_secure_computing(prev) || has_secure_computing(next)) { | 607 | if (has_secure_computing(prev) || has_secure_computing(next)) { |
608 | /* slow path here */ | 608 | /* slow path here */ |