The patch titled Subject: mm-defer-kmemleak-object-creation-of-module_alloc-v4 has been added to the -mm tree. Its filename is mm-defer-kmemleak-object-creation-of-module_alloc-v4.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-defer-kmemleak-object-creation-of-module_alloc-v4.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-defer-kmemleak-object-creation-of-module_alloc-v4.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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Kefeng Wang <wangkefeng.wang@xxxxxxxxxx> Subject: mm-defer-kmemleak-object-creation-of-module_alloc-v4 fix build Link: https://lkml.kernel.org/r/20211125080307.27225-1-wangkefeng.wang@xxxxxxxxxx Signed-off-by: Kefeng Wang <wangkefeng.wang@xxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/kasan/shadow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/kasan/shadow.c~mm-defer-kmemleak-object-creation-of-module_alloc-v4 +++ a/mm/kasan/shadow.c @@ -525,7 +525,7 @@ int kasan_module_alloc(void *addr, size_ vm->flags |= VM_KASAN; kmemleak_ignore(ret); - if (vm->flags & VM_DELAY_KMEMLEAK) + if (vm->flags & VM_DEFER_KMEMLEAK) kmemleak_vmalloc(vm, size, gfp_mask); return 0; _ Patches currently in -mm which might be from wangkefeng.wang@xxxxxxxxxx are mm-defer-kmemleak-object-creation-of-module_alloc.patch mm-defer-kmemleak-object-creation-of-module_alloc-v4.patch