diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2006-10-02 05:18:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-02 10:57:24 -0400 |
commit | 7fbaac005cab2f3b4d6999cdb32fb93d442c5cdb (patch) | |
tree | 5e97a4a30d7659ff688500e997387c38d042faa4 | |
parent | 72d9dcfc7afd80fe98334ec23531b638ee54df8b (diff) |
[PATCH] proc: Use pid_task instead of open coding it
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | fs/proc/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index 38a8046948f3..04e29f929a11 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c | |||
@@ -958,7 +958,7 @@ static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_st | |||
958 | /* | 958 | /* |
959 | * grab the reference to task. | 959 | * grab the reference to task. |
960 | */ | 960 | */ |
961 | ei->pid = get_pid(task->pids[PIDTYPE_PID].pid); | 961 | ei->pid = get_pid(task_pid(task)); |
962 | if (!ei->pid) | 962 | if (!ei->pid) |
963 | goto out_unlock; | 963 | goto out_unlock; |
964 | 964 | ||