The patch titled debugfs: remove module_exit() has been removed from the -mm tree. Its filename was debugfs-remove-module_exit.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: debugfs: remove module_exit() From: Amerigo Wang <amwang@xxxxxxxxxx> debugfs can't be a module, so module_exit() is meaningless for it. Signed-off-by: WANG Cong <amwang@xxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/debugfs/inode.c | 15 --------------- 1 file changed, 15 deletions(-) diff -puN fs/debugfs/inode.c~debugfs-remove-module_exit fs/debugfs/inode.c --- a/fs/debugfs/inode.c~debugfs-remove-module_exit +++ a/fs/debugfs/inode.c @@ -13,9 +13,6 @@ * */ -/* uncomment to get debug messages from the debug filesystem, ah the irony. */ -/* #define DEBUG */ - #include <linux/module.h> #include <linux/fs.h> #include <linux/mount.h> @@ -540,17 +537,5 @@ static int __init debugfs_init(void) return retval; } - -static void __exit debugfs_exit(void) -{ - debugfs_registered = false; - - simple_release_fs(&debugfs_mount, &debugfs_mount_count); - unregister_filesystem(&debug_fs_type); - kobject_put(debug_kobj); -} - core_initcall(debugfs_init); -module_exit(debugfs_exit); -MODULE_LICENSE("GPL"); _ Patches currently in -mm which might be from amwang@xxxxxxxxxx are origin.patch linux-next.patch smp-move-smp-setup-functions-to-kernel-smpc.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