The patch titled 9p: fix leak on error path has been removed from the -mm tree. Its filename is 9p-fix-leak-on-error-path.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: 9p: fix leak on error path From: Alexey Dobriyan <adobriyan@xxxxxxxxx> If register_filesystem() fails mux workqueue must be killed. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Eric Van Hensbergen <ericvh@xxxxxxxxx> Cc: Ron Minnich <rminnich@xxxxxxxx> Cc: Latchesar Ionkov <lucho@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/9p/v9fs.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff -puN fs/9p/v9fs.c~9p-fix-leak-on-error-path fs/9p/v9fs.c --- a/fs/9p/v9fs.c~9p-fix-leak-on-error-path +++ a/fs/9p/v9fs.c @@ -460,8 +460,10 @@ static int __init init_v9fs(void) ret = v9fs_mux_global_init(); if (!ret) - ret = register_filesystem(&v9fs_fs_type); - + return ret; + ret = register_filesystem(&v9fs_fs_type); + if (!ret) + v9fs_mux_global_exit(); return ret; } _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch asus_acpi-fix-proc-files-parsing.patch asus_acpi-dont-printk-on-writing-garbage-to-proc-files.patch git-dvb.patch git-ieee1394.patch config_pm=n-slim-drivers-pcmcia.patch i82092-wire-up-errors-from-pci_register_driver.patch git-serial.patch git-scsi-misc.patch megaraid-fix-warnings-when-config_proc_fs=n.patch kmemdup-introduce.patch kmemdup-some-users.patch create-fs-utimesc.patch proper-flags-type-of-spin_lock_irqsave.patch remove-null-check-in-register_nls.patch make-kmem_cache_destroy-return-void-ecryptfs.patch config_pm=n-slim-drivers-ide-pci-sc1200c.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