The patch titled Subject: mm: introduce kv[mz]alloc helpers - f2fs fix up has been added to the -mm tree. Its filename is mm-introduce-kvalloc-helpers-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-introduce-kvalloc-helpers-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-introduce-kvalloc-helpers-fix.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: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Subject: mm: introduce kv[mz]alloc helpers - f2fs fix up f2fs fixup Link: http://lkml.kernel.org/r/20170320163735.332e64b7@xxxxxxxxxxxxxxxx Signed-off-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxxxx> Cc: Jaegeuk Kim <jaegeuk@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/f2fs/node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/f2fs/node.c~mm-introduce-kvalloc-helpers-fix fs/f2fs/node.c --- a/fs/f2fs/node.c~mm-introduce-kvalloc-helpers-fix +++ a/fs/f2fs/node.c @@ -2651,7 +2651,7 @@ static int init_free_nid_cache(struct f2 if (!nm_i->nat_block_bitmap) return -ENOMEM; - nm_i->free_nid_count = f2fs_kvzalloc(nm_i->nat_blocks * + nm_i->free_nid_count = kvzalloc(nm_i->nat_blocks * sizeof(unsigned short), GFP_KERNEL); if (!nm_i->free_nid_count) return -ENOMEM; _ Patches currently in -mm which might be from sfr@xxxxxxxxxxxxxxxx are mm-introduce-kvalloc-helpers-fix.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