The patch titled Subject: page_alloc: remove inactive initialization has been added to the -mm mm-unstable branch. Its filename is page_alloc-remove-inactive-initialization.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/page_alloc-remove-inactive-initialization.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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 via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Li kunyu <kunyu@xxxxxxxxxxxx> Subject: page_alloc: remove inactive initialization Date: Wed, 3 Aug 2022 14:41:18 +0800 The allocation address of the table pointer variable is first performed in the function, no initialization assignment is required, and no invalid pointer will appear. Link: https://lkml.kernel.org/r/20220803064118.3664-1-kunyu@xxxxxxxxxxxx Signed-off-by: Li kunyu <kunyu@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/page_alloc.c~page_alloc-remove-inactive-initialization +++ a/mm/page_alloc.c @@ -8983,7 +8983,7 @@ void *__init alloc_large_system_hash(con { unsigned long long max = high_limit; unsigned long log2qty, size; - void *table = NULL; + void *table; gfp_t gfp_flags; bool virt; bool huge; _ Patches currently in -mm which might be from kunyu@xxxxxxxxxxxx are page_alloc-remove-inactive-initialization.patch