diff options
author | Greg Ungerer <gerg@snapgear.com> | 2006-07-04 15:04:39 +1000 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-03 22:37:13 -0700 |
commit | 31304c909e6945b005af62cd55a582e9c010a0b4 (patch) | |
tree | 18cc603ac965319699d30dfea05289be9699a1d8 /fs/proc | |
parent | e82ca04387dd6c98722f5f48235089839fd04268 (diff) | |
download | linux-stable-31304c909e6945b005af62cd55a582e9c010a0b4.tar.gz linux-stable-31304c909e6945b005af62cd55a582e9c010a0b4.tar.bz2 linux-stable-31304c909e6945b005af62cd55a582e9c010a0b4.zip |
[PATCH] uclinux: fix proc_task()/get_proc-task() naming
Fix changed name of proc_task() to get_proc_task().
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/task_nommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/task_nommu.c b/fs/proc/task_nommu.c index af69f28277b6..4616ed50ffcd 100644 --- a/fs/proc/task_nommu.c +++ b/fs/proc/task_nommu.c @@ -107,7 +107,7 @@ int proc_exe_link(struct inode *inode, struct dentry **dentry, struct vfsmount * { struct vm_list_struct *vml; struct vm_area_struct *vma; - struct task_struct *task = proc_task(inode); + struct task_struct *task = get_proc_task(inode); struct mm_struct *mm = get_task_mm(task); int result = -ENOENT; |