The patch titled Subject: zpool: remove no-op module init/exit has been added to the -mm tree. Its filename is zpool-remove-no-op-module-init-exit.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/zpool-remove-no-op-module-init-exit.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/zpool-remove-no-op-module-init-exit.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: Dan Streetman <ddstreet@xxxxxxxx> Subject: zpool: remove no-op module init/exit Remove zpool_init() and zpool_exit(); they do nothing other than print "loaded" and "unloaded". Signed-off-by: Dan Streetman <ddstreet@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/zpool.c | 14 -------------- 1 file changed, 14 deletions(-) diff -puN mm/zpool.c~zpool-remove-no-op-module-init-exit mm/zpool.c --- a/mm/zpool.c~zpool-remove-no-op-module-init-exit +++ a/mm/zpool.c @@ -353,20 +353,6 @@ u64 zpool_get_total_size(struct zpool *z return zpool->driver->total_size(zpool->pool); } -static int __init init_zpool(void) -{ - pr_info("loaded\n"); - return 0; -} - -static void __exit exit_zpool(void) -{ - pr_info("unloaded\n"); -} - -module_init(init_zpool); -module_exit(exit_zpool); - MODULE_LICENSE("GPL"); MODULE_AUTHOR("Dan Streetman <ddstreet@xxxxxxxx>"); MODULE_DESCRIPTION("Common API for compressed memory storage"); _ Patches currently in -mm which might be from ddstreet@xxxxxxxx are mm-zpool-constify-the-zpool_ops.patch mm-zbud-constify-the-zbud_ops.patch zpool-add-zpool_has_pool.patch zpool-add-zpool_has_pool-fix.patch zswap-dynamic-pool-creation.patch zswap-dynamic-pool-creation-fix.patch zswap-change-zpool-compressor-at-runtime.patch zswap-change-zpool-compressor-at-runtime-fix.patch zpool-remove-no-op-module-init-exit.patch linux-next.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