The patch titled Subject: zpool: remove no-op module init/exit has been removed from the -mm tree. Its filename was zpool-remove-no-op-module-init-exit.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 @@ -320,20 +320,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 zpool-add-zpool_has_pool.patch zswap-dynamic-pool-creation.patch zswap-change-zpool-compressor-at-runtime.patch zswap-update-docs-for-runtime-changeable-attributes.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