The patch titled cramfs: rewrite init_cramfs_fs() has been removed from the -mm tree. Its filename is cramfs-rewrite-init_cramfs_fs.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: cramfs: rewrite init_cramfs_fs() From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Two lines -- two bugs. :-( Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/cramfs/inode.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff -puN fs/cramfs/inode.c~cramfs-rewrite-init_cramfs_fs fs/cramfs/inode.c --- a/fs/cramfs/inode.c~cramfs-rewrite-init_cramfs_fs +++ a/fs/cramfs/inode.c @@ -543,8 +543,15 @@ static struct file_system_type cramfs_fs static int __init init_cramfs_fs(void) { - cramfs_uncompress_init(); - return register_filesystem(&cramfs_fs_type); + int rv; + + rv = cramfs_uncompress_init(); + if (rv < 0) + return rv; + rv = register_filesystem(&cramfs_fs_type); + if (rv < 0) + cramfs_uncompress_exit(); + return rv; } static void __exit exit_cramfs_fs(void) _ 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