The patch titled Subject: proc: fix missing reference of mm has been added to the -mm tree. Its filename is proc-fix-missing-reference-of-mm.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/proc-fix-missing-reference-of-mm.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/proc-fix-missing-reference-of-mm.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Sudip Mukherjee <sudipm.mukherjee@xxxxxxxxx> Subject: proc: fix missing reference of mm The defconfig build of blackfin was failing with the error: fs/proc/task_nommu.c: In function 'is_stack': fs/proc/task_nommu.c:132:28: error: 'mm' undeclared (first use in this function) While reverting /proc/<pid>/maps [stack:TID] annotation a reference to mm was missed. Fixes: e87d4fd02f40 ("proc: revert /proc/<pid>/maps [stack:TID] annotation") Signed-off-by: Sudip Mukherjee <sudip@xxxxxxxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/task_nommu.c | 1 + 1 file changed, 1 insertion(+) diff -puN fs/proc/task_nommu.c~proc-fix-missing-reference-of-mm fs/proc/task_nommu.c --- a/fs/proc/task_nommu.c~proc-fix-missing-reference-of-mm +++ a/fs/proc/task_nommu.c @@ -126,6 +126,7 @@ unsigned long task_statm(struct mm_struc static int is_stack(struct proc_maps_private *priv, struct vm_area_struct *vma, int is_pid) { + struct mm_struct *mm = vma->vm_mm; int stack = 0; if (is_pid) { _ Patches currently in -mm which might be from sudipm.mukherjee@xxxxxxxxx are reiserfs-fix-dereference-of-err_ptr.patch proc-fix-missing-reference-of-mm.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html