The patch titled cramfs: make cramfs_uncompress_exit() return void has been removed from the -mm tree. Its filename is cramfs-make-cramfs_uncompress_exit-return-void.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: cramfs: make cramfs_uncompress_exit() return void From: Alexey Dobriyan <adobriyan@xxxxxxxxx> It always returns 0, so relying on it is useless. The only caller isn't checking return value. In general, un-, de-, -free functions should return void. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/cramfs/uncompress.c | 3 +-- include/linux/cramfs_fs.h | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff -puN fs/cramfs/uncompress.c~cramfs-make-cramfs_uncompress_exit-return-void fs/cramfs/uncompress.c --- a/fs/cramfs/uncompress.c~cramfs-make-cramfs_uncompress_exit-return-void +++ a/fs/cramfs/uncompress.c @@ -68,11 +68,10 @@ int cramfs_uncompress_init(void) return 0; } -int cramfs_uncompress_exit(void) +void cramfs_uncompress_exit(void) { if (!--initialized) { zlib_inflateEnd(&stream); vfree(stream.workspace); } - return 0; } diff -puN include/linux/cramfs_fs.h~cramfs-make-cramfs_uncompress_exit-return-void include/linux/cramfs_fs.h --- a/include/linux/cramfs_fs.h~cramfs-make-cramfs_uncompress_exit-return-void +++ a/include/linux/cramfs_fs.h @@ -87,6 +87,6 @@ struct cramfs_super { /* Uncompression interfaces to the underlying zlib */ int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen); int cramfs_uncompress_init(void); -int cramfs_uncompress_exit(void); +void cramfs_uncompress_exit(void); #endif _ 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