Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 18087
b: refs/heads/master
c: 697102c
h: refs/heads/master
i:
  18085: f495f35
  18083: c81758b
  18079: e01e332
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jan 12, 2006
1 parent fe934d0 commit 9426bf8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 32d39a9355780bc9aadcf76a2d2004bdbe0f4665
refs/heads/master: 697102cda5c5e778d0bc3b4b9f8d935f4fe64125
2 changes: 1 addition & 1 deletion trunk/arch/arm26/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ int
copy_thread(int nr, unsigned long clone_flags, unsigned long stack_start,
unsigned long unused, struct task_struct *p, struct pt_regs *regs)
{
struct thread_info *thread = p->thread_info;
struct thread_info *thread = task_thread_info(p);
struct pt_regs *childregs;

childregs = __get_user_regs(thread);
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/arm26/kernel/ptrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ static int ptrace_setregs(struct task_struct *tsk, void *uregs)
*/
static int ptrace_getfpregs(struct task_struct *tsk, void *ufp)
{
return copy_to_user(ufp, &tsk->thread_info->fpstate,
return copy_to_user(ufp, &task_thread_info(tsk)->fpstate,
sizeof(struct user_fp)) ? -EFAULT : 0;
}

Expand All @@ -542,7 +542,7 @@ static int ptrace_getfpregs(struct task_struct *tsk, void *ufp)
static int ptrace_setfpregs(struct task_struct *tsk, void *ufp)
{
set_stopped_child_used_math(tsk);
return copy_from_user(&tsk->thread_info->fpstate, ufp,
return copy_from_user(&task_threas_info(tsk)->fpstate, ufp,
sizeof(struct user_fp)) ? -EFAULT : 0;
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-arm26/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ extern struct task_struct *__switch_to(struct task_struct *, struct thread_info

#define switch_to(prev,next,last) \
do { \
last = __switch_to(prev,prev->thread_info,next->thread_info); \
last = __switch_to(prev,task_thread_info(prev),task_thread_info(next)); \
} while (0)

/*
Expand Down
4 changes: 2 additions & 2 deletions trunk/include/asm-arm26/thread_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ extern void free_thread_info(struct thread_info *);
#define put_thread_info(ti) put_task_struct((ti)->task)

#define thread_saved_pc(tsk) \
((unsigned long)(pc_pointer((tsk)->thread_info->cpu_context.pc)))
((unsigned long)(pc_pointer(task_thread_info(tsk)->cpu_context.pc)))
#define thread_saved_fp(tsk) \
((unsigned long)((tsk)->thread_info->cpu_context.fp))
((unsigned long)(task_thread_info(tsk)->cpu_context.fp))

#else /* !__ASSEMBLY__ */

Expand Down

0 comments on commit 9426bf8

Please sign in to comment.