diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-01-12 04:05:59 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 12:08:57 -0500 |
commit | 697102cda5c5e778d0bc3b4b9f8d935f4fe64125 (patch) | |
tree | c97150b6f2a80b014026fbf496f8259937fdac3a | |
parent | 32d39a9355780bc9aadcf76a2d2004bdbe0f4665 (diff) |
[PATCH] arm26: 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>
-rw-r--r-- | arch/arm26/kernel/process.c | 2 | ||||
-rw-r--r-- | arch/arm26/kernel/ptrace.c | 4 | ||||
-rw-r--r-- | include/asm-arm26/system.h | 2 | ||||
-rw-r--r-- | include/asm-arm26/thread_info.h | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm26/kernel/process.c b/arch/arm26/kernel/process.c index 15833a0057dd..159f84a86321 100644 --- a/arch/arm26/kernel/process.c +++ b/arch/arm26/kernel/process.c | |||
@@ -277,7 +277,7 @@ int | |||
277 | copy_thread(int nr, unsigned long clone_flags, unsigned long stack_start, | 277 | copy_thread(int nr, unsigned long clone_flags, unsigned long stack_start, |
278 | unsigned long unused, struct task_struct *p, struct pt_regs *regs) | 278 | unsigned long unused, struct task_struct *p, struct pt_regs *regs) |
279 | { | 279 | { |
280 | struct thread_info *thread = p->thread_info; | 280 | struct thread_info *thread = task_thread_info(p); |
281 | struct pt_regs *childregs; | 281 | struct pt_regs *childregs; |
282 | 282 | ||
283 | childregs = __get_user_regs(thread); | 283 | childregs = __get_user_regs(thread); |
diff --git a/arch/arm26/kernel/ptrace.c b/arch/arm26/kernel/ptrace.c index 4e6b7356a722..56afe1f6396a 100644 --- a/arch/arm26/kernel/ptrace.c +++ b/arch/arm26/kernel/ptrace.c | |||
@@ -532,7 +532,7 @@ static int ptrace_setregs(struct task_struct *tsk, void *uregs) | |||
532 | */ | 532 | */ |
533 | static int ptrace_getfpregs(struct task_struct *tsk, void *ufp) | 533 | static int ptrace_getfpregs(struct task_struct *tsk, void *ufp) |
534 | { | 534 | { |
535 | return copy_to_user(ufp, &tsk->thread_info->fpstate, | 535 | return copy_to_user(ufp, &task_thread_info(tsk)->fpstate, |
536 | sizeof(struct user_fp)) ? -EFAULT : 0; | 536 | sizeof(struct user_fp)) ? -EFAULT : 0; |
537 | } | 537 | } |
538 | 538 | ||
@@ -542,7 +542,7 @@ static int ptrace_getfpregs(struct task_struct *tsk, void *ufp) | |||
542 | static int ptrace_setfpregs(struct task_struct *tsk, void *ufp) | 542 | static int ptrace_setfpregs(struct task_struct *tsk, void *ufp) |
543 | { | 543 | { |
544 | set_stopped_child_used_math(tsk); | 544 | set_stopped_child_used_math(tsk); |
545 | return copy_from_user(&tsk->thread_info->fpstate, ufp, | 545 | return copy_from_user(&task_threas_info(tsk)->fpstate, ufp, |
546 | sizeof(struct user_fp)) ? -EFAULT : 0; | 546 | sizeof(struct user_fp)) ? -EFAULT : 0; |
547 | } | 547 | } |
548 | 548 | ||
diff --git a/include/asm-arm26/system.h b/include/asm-arm26/system.h index 1bce6b3590ff..ca4ccfc4b578 100644 --- a/include/asm-arm26/system.h +++ b/include/asm-arm26/system.h | |||
@@ -111,7 +111,7 @@ extern struct task_struct *__switch_to(struct task_struct *, struct thread_info | |||
111 | 111 | ||
112 | #define switch_to(prev,next,last) \ | 112 | #define switch_to(prev,next,last) \ |
113 | do { \ | 113 | do { \ |
114 | last = __switch_to(prev,prev->thread_info,next->thread_info); \ | 114 | last = __switch_to(prev,task_thread_info(prev),task_thread_info(next)); \ |
115 | } while (0) | 115 | } while (0) |
116 | 116 | ||
117 | /* | 117 | /* |
diff --git a/include/asm-arm26/thread_info.h b/include/asm-arm26/thread_info.h index aff3e5699c64..909c88dff84d 100644 --- a/include/asm-arm26/thread_info.h +++ b/include/asm-arm26/thread_info.h | |||
@@ -91,9 +91,9 @@ extern void free_thread_info(struct thread_info *); | |||
91 | #define put_thread_info(ti) put_task_struct((ti)->task) | 91 | #define put_thread_info(ti) put_task_struct((ti)->task) |
92 | 92 | ||
93 | #define thread_saved_pc(tsk) \ | 93 | #define thread_saved_pc(tsk) \ |
94 | ((unsigned long)(pc_pointer((tsk)->thread_info->cpu_context.pc))) | 94 | ((unsigned long)(pc_pointer(task_thread_info(tsk)->cpu_context.pc))) |
95 | #define thread_saved_fp(tsk) \ | 95 | #define thread_saved_fp(tsk) \ |
96 | ((unsigned long)((tsk)->thread_info->cpu_context.fp)) | 96 | ((unsigned long)(task_thread_info(tsk)->cpu_context.fp)) |
97 | 97 | ||
98 | #else /* !__ASSEMBLY__ */ | 98 | #else /* !__ASSEMBLY__ */ |
99 | 99 | ||