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-i386/signal.c | |
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-i386/signal.c')
-rw-r--r-- | arch/um/sys-i386/signal.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/arch/um/sys-i386/signal.c b/arch/um/sys-i386/signal.c index 19053d46cb60..fd0c25ad6af3 100644 --- a/arch/um/sys-i386/signal.c +++ b/arch/um/sys-i386/signal.c | |||
@@ -168,12 +168,13 @@ static int copy_sc_from_user(struct pt_regs *regs, | |||
168 | struct sigcontext __user *from) | 168 | struct sigcontext __user *from) |
169 | { | 169 | { |
170 | struct sigcontext sc; | 170 | struct sigcontext sc; |
171 | int err; | 171 | int err, pid; |
172 | 172 | ||
173 | err = copy_from_user(&sc, from, sizeof(sc)); | 173 | err = copy_from_user(&sc, from, sizeof(sc)); |
174 | if (err) | 174 | if (err) |
175 | return err; | 175 | return err; |
176 | 176 | ||
177 | pid = userspace_pid[current_thread_info()->cpu]; | ||
177 | copy_sc(®s->regs, &sc); | 178 | copy_sc(®s->regs, &sc); |
178 | if (have_fpx_regs) { | 179 | if (have_fpx_regs) { |
179 | struct user_fxsr_struct fpx; | 180 | struct user_fxsr_struct fpx; |
@@ -187,8 +188,7 @@ static int copy_sc_from_user(struct pt_regs *regs, | |||
187 | if (err) | 188 | if (err) |
188 | return 1; | 189 | return 1; |
189 | 190 | ||
190 | err = restore_fpx_registers(userspace_pid[current_thread->cpu], | 191 | err = restore_fpx_registers(pid, (unsigned long *) &fpx); |
191 | (unsigned long *) &fpx); | ||
192 | if (err < 0) { | 192 | if (err < 0) { |
193 | printk(KERN_ERR "copy_sc_from_user - " | 193 | printk(KERN_ERR "copy_sc_from_user - " |
194 | "restore_fpx_registers failed, errno = %d\n", | 194 | "restore_fpx_registers failed, errno = %d\n", |
@@ -204,8 +204,7 @@ static int copy_sc_from_user(struct pt_regs *regs, | |||
204 | if (err) | 204 | if (err) |
205 | return 1; | 205 | return 1; |
206 | 206 | ||
207 | err = restore_fp_registers(userspace_pid[current_thread->cpu], | 207 | err = restore_fp_registers(pid, (unsigned long *) &fp); |
208 | (unsigned long *) &fp); | ||
209 | if (err < 0) { | 208 | if (err < 0) { |
210 | printk(KERN_ERR "copy_sc_from_user - " | 209 | printk(KERN_ERR "copy_sc_from_user - " |
211 | "restore_fp_registers failed, errno = %d\n", | 210 | "restore_fp_registers failed, errno = %d\n", |
@@ -223,7 +222,7 @@ static int copy_sc_to_user(struct sigcontext __user *to, | |||
223 | { | 222 | { |
224 | struct sigcontext sc; | 223 | struct sigcontext sc; |
225 | struct faultinfo * fi = ¤t->thread.arch.faultinfo; | 224 | struct faultinfo * fi = ¤t->thread.arch.faultinfo; |
226 | int err; | 225 | int err, pid; |
227 | 226 | ||
228 | sc.gs = REGS_GS(regs->regs.gp); | 227 | sc.gs = REGS_GS(regs->regs.gp); |
229 | sc.fs = REGS_FS(regs->regs.gp); | 228 | sc.fs = REGS_FS(regs->regs.gp); |
@@ -249,11 +248,11 @@ static int copy_sc_to_user(struct sigcontext __user *to, | |||
249 | to_fp = (to_fp ? to_fp : (struct _fpstate __user *) (to + 1)); | 248 | to_fp = (to_fp ? to_fp : (struct _fpstate __user *) (to + 1)); |
250 | sc.fpstate = to_fp; | 249 | sc.fpstate = to_fp; |
251 | 250 | ||
251 | pid = userspace_pid[current_thread_info()->cpu]; | ||
252 | if (have_fpx_regs) { | 252 | if (have_fpx_regs) { |
253 | struct user_fxsr_struct fpx; | 253 | struct user_fxsr_struct fpx; |
254 | 254 | ||
255 | err = save_fpx_registers(userspace_pid[current_thread->cpu], | 255 | err = save_fpx_registers(pid, (unsigned long *) &fpx); |
256 | (unsigned long *) &fpx); | ||
257 | if (err < 0){ | 256 | if (err < 0){ |
258 | printk(KERN_ERR "copy_sc_to_user - save_fpx_registers " | 257 | printk(KERN_ERR "copy_sc_to_user - save_fpx_registers " |
259 | "failed, errno = %d\n", err); | 258 | "failed, errno = %d\n", err); |
@@ -276,8 +275,7 @@ static int copy_sc_to_user(struct sigcontext __user *to, | |||
276 | else { | 275 | else { |
277 | struct user_i387_struct fp; | 276 | struct user_i387_struct fp; |
278 | 277 | ||
279 | err = save_fp_registers(userspace_pid[current_thread->cpu], | 278 | err = save_fp_registers(pid, (unsigned long *) &fp); |
280 | (unsigned long *) &fp); | ||
281 | if (copy_to_user(to_fp, &fp, sizeof(struct user_i387_struct))) | 279 | if (copy_to_user(to_fp, &fp, sizeof(struct user_i387_struct))) |
282 | return 1; | 280 | return 1; |
283 | } | 281 | } |