The patch titled Subject: autofs: fix autofs4_fill_super() error exit handling has been added to the -mm tree. Its filename is autofs-fix-autofs4_fill_super-error-exit-handling.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/autofs-fix-autofs4_fill_super-error-exit-handling.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/autofs-fix-autofs4_fill_super-error-exit-handling.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: Ian Kent <raven@xxxxxxxxxx> Subject: autofs: fix autofs4_fill_super() error exit handling Somewhere along the line the error handling gotos have become incorrect. Link: http://lkml.kernel.org/r/20160812024749.12352.15100.stgit@xxxxxxxxxxxxxxxx Signed-off-by: Ian Kent <raven@xxxxxxxxxx> Cc: Tomohiro Kusumi <kusumi.tomohiro@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/autofs4/inode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN fs/autofs4/inode.c~autofs-fix-autofs4_fill_super-error-exit-handling fs/autofs4/inode.c --- a/fs/autofs4/inode.c~autofs-fix-autofs4_fill_super-error-exit-handling +++ a/fs/autofs4/inode.c @@ -313,7 +313,7 @@ int autofs4_fill_super(struct super_bloc if (!pipe) { pr_err("could not open pipe file descriptor\n"); - goto fail_dput; + goto fail_put_pid; } ret = autofs_prepare_pipe(pipe); if (ret < 0) @@ -334,14 +334,14 @@ int autofs4_fill_super(struct super_bloc fail_fput: pr_err("pipe file descriptor does not contain proper ops\n"); fput(pipe); - /* fall through */ +fail_put_pid: + put_pid(sbi->oz_pgrp); fail_dput: dput(root); goto fail_free; fail_ino: kfree(ino); fail_free: - put_pid(sbi->oz_pgrp); kfree(sbi); s->s_fs_info = NULL; return ret; _ Patches currently in -mm which might be from raven@xxxxxxxxxx are autofs-fix-autofs4_fill_super-error-exit-handling.patch autofs-remove-ino-free-in-autofs4_dir_symlink.patch autofs-fix-dev-ioctl-number-range-check.patch autofs-add-autofs_dev_ioctl_version-for-autofs_dev_ioctl_version_cmd.patch autofs4-move-linux-auto_dev-ioctlh-to-uapi-linux.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