diff options
author | Jeff Dike <jdike@addtoit.com> | 2008-02-05 01:30:54 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:28 -0500 |
commit | a5a678c80beac4d163babda243a27eeb9c89bd89 (patch) | |
tree | abf94fe11f82a642727fcbddceee647c7effc5f2 /arch/um/sys-x86_64 | |
parent | 009ec2a915ba52f6b647c4076f4a2e259cba85aa (diff) |
uml: current.h cleanup
Tidy current-related stuff. There was a comment in current.h saying
that current_thread was obsolete, so this patch turns all instances of
current_thread into current_thread_info(). There's some simplifying
of the result in arch/um/sys-i386/signal.c.
current.h and thread_info also get style cleanups.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/sys-x86_64')
-rw-r--r-- | arch/um/sys-x86_64/signal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/sys-x86_64/signal.c b/arch/um/sys-x86_64/signal.c index 14070181407b..1a899a7ed7a6 100644 --- a/arch/um/sys-x86_64/signal.c +++ b/arch/um/sys-x86_64/signal.c | |||
@@ -81,7 +81,7 @@ static int copy_sc_from_user(struct pt_regs *regs, | |||
81 | if (err) | 81 | if (err) |
82 | return 1; | 82 | return 1; |
83 | 83 | ||
84 | err = restore_fp_registers(userspace_pid[current_thread->cpu], | 84 | err = restore_fp_registers(userspace_pid[current_thread_info()->cpu], |
85 | (unsigned long *) &fp); | 85 | (unsigned long *) &fp); |
86 | if (err < 0) { | 86 | if (err < 0) { |
87 | printk(KERN_ERR "copy_sc_from_user - " | 87 | printk(KERN_ERR "copy_sc_from_user - " |
@@ -143,7 +143,7 @@ static int copy_sc_to_user(struct sigcontext __user *to, | |||
143 | if (err) | 143 | if (err) |
144 | return 1; | 144 | return 1; |
145 | 145 | ||
146 | err = save_fp_registers(userspace_pid[current_thread->cpu], | 146 | err = save_fp_registers(userspace_pid[current_thread_info()->cpu], |
147 | (unsigned long *) &fp); | 147 | (unsigned long *) &fp); |
148 | if (err < 0) { | 148 | if (err < 0) { |
149 | printk(KERN_ERR "copy_sc_from_user - restore_fp_registers " | 149 | printk(KERN_ERR "copy_sc_from_user - restore_fp_registers " |