| Submitter | Andy Whitcroft |
|---|---|
| Date | July 21, 2011, 1:13 p.m. |
| Message ID | <1311254026-29719-16-git-send-email-apw@canonical.com> |
| Download | mbox | patch |
| Permalink | /patch/106045/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/fs/proc/base.c b/fs/proc/base.c index 3803523..bf64fd7 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -281,9 +281,9 @@ out: static int proc_pid_auxv(struct task_struct *task, char *buffer) { - int res = 0; - struct mm_struct *mm = get_task_mm(task); - if (mm) { + struct mm_struct *mm = mm_for_maps(task); + int res = PTR_ERR(mm); + if (mm && !IS_ERR(mm)) { unsigned int nwords = 0; do { nwords += 2;