]> git.baikalelectronics.ru Git - kernel.git/commit
mm/page_alloc.c: fix 'zone_id' may be used uninitialized in this function warning
authorNico Pache <npache@redhat.com>
Thu, 2 Sep 2021 21:58:08 +0000 (14:58 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 3 Sep 2021 16:58:15 +0000 (09:58 -0700)
commit39f2f9d723edcf20e952f1a08af480338e5ae100
tree60dc22cd16497fd6ee921f78d135d0ba93589fd4
parent729685f1c6439f0b827729d44a8ef111fb9bf2cc
mm/page_alloc.c: fix 'zone_id' may be used uninitialized in this function warning

When compiling with -Werror, cc1 will warn that 'zone_id' may be used
uninitialized in this function warning.

Initialize the zone_id as 0.

Its safe to assume that if the code reaches this point it has at least one
numa node with memory, so no need for an assertion before
init_unavilable_range.

Link: https://lkml.kernel.org/r/20210716210336.1114114-1-npache@redhat.com
Fixes: 71bd2e49c8c7 ("mm/page_alloc: fix memory map initialization for descending nodes")
Signed-off-by: Nico Pache <npache@redhat.com>
Cc: Mike Rapoport <rppt@linux.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/page_alloc.c