From: Josh Stone Date: Mon, 15 Oct 2012 17:46:05 +0000 (-0700) Subject: PR14712: Correct the bug number in a comment X-Git-Tag: release-2.1~355 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=1f13ff721e62c83e0eced837d951d559dc8b9a4f;p=systemtap.git PR14712: Correct the bug number in a comment I mixed this up in the log too; commits 529c7eae and 3df148cb are really for PR14712, not PR14172. --- diff --git a/runtime/task_finder_vma.c b/runtime/task_finder_vma.c index fa212ac5a..0db35a012 100644 --- a/runtime/task_finder_vma.c +++ b/runtime/task_finder_vma.c @@ -381,7 +381,7 @@ static struct file* stap_find_exe_file(struct mm_struct* mm) { /* VM_EXECUTABLE was killed in kernel commit e9714acf, but in kernels - * that new we can just use mm->exe_file anyway. (PR14172) */ + * that new we can just use mm->exe_file anyway. (PR14712) */ #ifdef VM_EXECUTABLE struct vm_area_struct *vma; for (vma = mm->mmap; vma; vma = vma->vm_next)