The patch titled Subject: mm/zswap: add __init to some functions in zswap has been added to the -mm tree. Its filename is mm-zswap-add-__init-to-some-functions-in-zswap.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-zswap-add-__init-to-some-functions-in-zswap.patch echo and later at echo http://ozlabs.org/~akpm/mmotm/broken-out/mm-zswap-add-__init-to-some-functions-in-zswap.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: Mahendran Ganesh <opensource.ganesh@xxxxxxxxx> Subject: mm/zswap: add __init to some functions in zswap zswap_cpu_init/zswap_comp_exit/zswap_entry_cache_create is only called by __init init_zswap() Signed-off-by: Mahendran Ganesh <opensource.ganesh@xxxxxxxxx> Cc: Seth Jennings <sjennings@xxxxxxxxxxxxxx> Cc: Dan Streetman <ddstreet@xxxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/zswap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN mm/zswap.c~mm-zswap-add-__init-to-some-functions-in-zswap mm/zswap.c --- a/mm/zswap.c~mm-zswap-add-__init-to-some-functions-in-zswap +++ a/mm/zswap.c @@ -149,7 +149,7 @@ static int __init zswap_comp_init(void) return 0; } -static void zswap_comp_exit(void) +static void __init zswap_comp_exit(void) { /* free percpu transforms */ if (zswap_comp_pcpu_tfms) @@ -206,7 +206,7 @@ static struct zswap_tree *zswap_trees[MA **********************************/ static struct kmem_cache *zswap_entry_cache; -static int zswap_entry_cache_create(void) +static int __init zswap_entry_cache_create(void) { zswap_entry_cache = KMEM_CACHE(zswap_entry, 0); return zswap_entry_cache == NULL; @@ -389,7 +389,7 @@ static struct notifier_block zswap_cpu_n .notifier_call = zswap_cpu_notifier }; -static int zswap_cpu_init(void) +static int __init zswap_cpu_init(void) { unsigned long cpu; _ Patches currently in -mm which might be from opensource.ganesh@xxxxxxxxx are mm-zswap-add-__init-to-some-functions-in-zswap.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