diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2006-06-26 03:25:56 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 12:58:26 -0400 |
commit | 13b41b09491e5d75e8027dca1ee78f5e073bc4c0 (patch) | |
tree | 3f08183a4f59075fc3015165183b8ef17cb562a6 /fs/proc/task_mmu.c | |
parent | 99f895518368252ba862cc15ce4eb98ebbe1bec6 (diff) |
[PATCH] proc: Use struct pid not struct task_ref
Incrementally update my proc-dont-lock-task_structs-indefinitely patches so
that they work with struct pid instead of struct task_ref.
Mostly this is a straight 1-1 substitution.
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>
Diffstat (limited to 'fs/proc/task_mmu.c')
-rw-r--r-- | fs/proc/task_mmu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c index abf3208c3f60..0137ec4c1368 100644 --- a/fs/proc/task_mmu.c +++ b/fs/proc/task_mmu.c | |||
@@ -320,7 +320,7 @@ static void *m_start(struct seq_file *m, loff_t *pos) | |||
320 | if (last_addr == -1UL) | 320 | if (last_addr == -1UL) |
321 | return NULL; | 321 | return NULL; |
322 | 322 | ||
323 | priv->task = get_tref_task(priv->tref); | 323 | priv->task = get_pid_task(priv->pid, PIDTYPE_PID); |
324 | if (!priv->task) | 324 | if (!priv->task) |
325 | return NULL; | 325 | return NULL; |
326 | 326 | ||
@@ -416,7 +416,7 @@ static int do_maps_open(struct inode *inode, struct file *file, | |||
416 | int ret = -ENOMEM; | 416 | int ret = -ENOMEM; |
417 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); | 417 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
418 | if (priv) { | 418 | if (priv) { |
419 | priv->tref = proc_tref(inode); | 419 | priv->pid = proc_pid(inode); |
420 | ret = seq_open(file, ops); | 420 | ret = seq_open(file, ops); |
421 | if (!ret) { | 421 | if (!ret) { |
422 | struct seq_file *m = file->private_data; | 422 | struct seq_file *m = file->private_data; |