diff options
author | Cong Wang <xiyou.wangcong@gmail.com> | 2012-05-31 19:26:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-31 20:49:28 -0400 |
commit | e7dcd9990e42ccfc798d4eb55e2dbf9d7d434c6b (patch) | |
tree | ab9d03a5caa1e3fa5b65a9614f699a05632d33c6 /fs/proc/task_mmu.c | |
parent | b409e578d9a4ec95913e06d8fea2a33f1754ea69 (diff) |
proc: remove mm_for_maps()
mm_for_maps() is a simple wrapper for mm_access(), and the name is
misleading, so just remove it and use mm_access() directly.
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Acked-by: Hugh Dickins <hughd@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.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 7faaf2acc570..83ede6e3b5ec 100644 --- a/fs/proc/task_mmu.c +++ b/fs/proc/task_mmu.c | |||
@@ -125,7 +125,7 @@ static void *m_start(struct seq_file *m, loff_t *pos) | |||
125 | if (!priv->task) | 125 | if (!priv->task) |
126 | return ERR_PTR(-ESRCH); | 126 | return ERR_PTR(-ESRCH); |
127 | 127 | ||
128 | mm = mm_for_maps(priv->task); | 128 | mm = mm_access(priv->task, PTRACE_MODE_READ); |
129 | if (!mm || IS_ERR(mm)) | 129 | if (!mm || IS_ERR(mm)) |
130 | return mm; | 130 | return mm; |
131 | down_read(&mm->mmap_sem); | 131 | down_read(&mm->mmap_sem); |
@@ -919,7 +919,7 @@ static ssize_t pagemap_read(struct file *file, char __user *buf, | |||
919 | if (!pm.buffer) | 919 | if (!pm.buffer) |
920 | goto out_task; | 920 | goto out_task; |
921 | 921 | ||
922 | mm = mm_for_maps(task); | 922 | mm = mm_access(task, PTRACE_MODE_READ); |
923 | ret = PTR_ERR(mm); | 923 | ret = PTR_ERR(mm); |
924 | if (!mm || IS_ERR(mm)) | 924 | if (!mm || IS_ERR(mm)) |
925 | goto out_free; | 925 | goto out_free; |