The patch titled Subject: mm/zbud: init user ops only when it is needed has been added to the -mm tree. Its filename is mm-zbud-init-user-ops-only-when-it-is-needed.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-zbud-init-user-ops-only-when-it-is-needed.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-zbud-init-user-ops-only-when-it-is-needed.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: Heesub Shin <heesub.shin@xxxxxxxxxxx> Subject: mm/zbud: init user ops only when it is needed When zbud is initialized through the zpool wrapper, pool->ops which points to user-defined operations is always set regardless of whether it is specified from the upper layer. This causes zbud_reclaim_page() to iterate its loop for evicting pool pages out without any gain. This patch sets the user-defined ops only when it is needed, so that zbud_reclaim_page() can bail out the reclamation loop earlier if there is no user-defined operations specified. Signed-off-by: Heesub Shin <heesub.shin@xxxxxxxxxxx> Cc: Dan Streetman <ddstreet@xxxxxxxx> Cc: Seth Jennings <sjennings@xxxxxxxxxxxxxx> Cc: Sunae Seo <sunae.seo@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/zbud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/zbud.c~mm-zbud-init-user-ops-only-when-it-is-needed mm/zbud.c --- a/mm/zbud.c~mm-zbud-init-user-ops-only-when-it-is-needed +++ a/mm/zbud.c @@ -132,7 +132,7 @@ static struct zbud_ops zbud_zpool_ops = static void *zbud_zpool_create(gfp_t gfp, struct zpool_ops *zpool_ops) { - return zbud_create_pool(gfp, &zbud_zpool_ops); + return zbud_create_pool(gfp, zpool_ops ? &zbud_zpool_ops : NULL); } static void zbud_zpool_destroy(void *pool) _ Patches currently in -mm which might be from heesub.shin@xxxxxxxxxxx are mm-zbud-init-user-ops-only-when-it-is-needed.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