The patch titled Subject: proc-skip-branch-in-proc-lookup-fix has been added to the -mm tree. Its filename is proc-skip-branch-in-proc-lookup-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/proc-skip-branch-in-proc-lookup-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/proc-skip-branch-in-proc-lookup-fix.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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: proc-skip-branch-in-proc-lookup-fix proc_pident_instantiate() no longer takes the inode* Cc: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/base.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/proc/base.c~proc-skip-branch-in-proc-lookup-fix fs/proc/base.c --- a/fs/proc/base.c~proc-skip-branch-in-proc-lookup-fix +++ a/fs/proc/base.c @@ -2451,7 +2451,7 @@ static struct dentry *proc_pident_lookup if (p->len != dentry->d_name.len) continue; if (!memcmp(dentry->d_name.name, p->name, p->len)) { - res = proc_pident_instantiate(dir, dentry, task, p); + res = proc_pident_instantiate(dentry, task, p); break; } } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are fs-ocfs2-adding-new-return-type-vm_fault_t-fix.patch zram-introduce-zram-memory-tracking-fix.patch zram-introduce-zram-memory-tracking-update-fix.patch zram-introduce-zram-memory-tracking-update-fix-fix.patch mm-vmalloc-pass-proper-vm_start-into-debugobjects-fix.patch mm-shmem-make-statst_blksize-return-huge-page-size-if-thp-is-on-fix.patch mm-ksm-move-page_stable_node-from-ksmh-to-ksmc-fix.patch proc-simpler-iterations-for-proc-cmdline-fix.patch proc-skip-branch-in-proc-lookup-fix.patch revert-autofs-update-fs-autofs4-kconfig-fix.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