diff mbox series

page_alloc: remove inactive initialization

Message ID 20220803064118.3664-1-kunyu@nfschina.com (mailing list archive)
State New
Headers show
Series page_alloc: remove inactive initialization | expand

Commit Message

Li kunyu Aug. 3, 2022, 6:41 a.m. UTC
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.

Signed-off-by: Li kunyu <kunyu@nfschina.com>
---
 mm/page_alloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Li kunyu Aug. 12, 2022, 2:07 a.m. UTC | #1
Many thanks to Mr. Andrew Morton, this patch is entered in the mm-unstable module.

Patch address: 
  https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/page_alloc-remove-inactive-initialization.patch

Module address:
  git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
diff mbox series

Patch

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index b0bcab50f0a3..38d559e8aee6 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -8885,7 +8885,7 @@  void *__init alloc_large_system_hash(const char *tablename,
 {
 	unsigned long long max = high_limit;
 	unsigned long log2qty, size;
-	void *table = NULL;
+	void *table;
 	gfp_t gfp_flags;
 	bool virt;
 	bool huge;