]> git.baikalelectronics.ru Git - kernel.git/commit
mm: Fix '.data.once' orphan section warning
authorNathan Chancellor <nathan@kernel.org>
Mon, 28 Nov 2022 22:53:46 +0000 (15:53 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Dec 2022 10:23:04 +0000 (11:23 +0100)
commitf4c2ff5ed51cc7803dc146877885c3808ad66795
tree2567fe7f7dc7b5e14c60cb6aaabd1cdb9e300b3c
parent7338f833774ffee7cf46bbdc0d86c7bdecebc630
mm: Fix '.data.once' orphan section warning

Portions of upstream commit 9e5addb8271c ("mm/memcg: warning on !memcg
after readahead page charged") were backported as commit 3624aa286eed
("mm: add VM_WARN_ON_ONCE_PAGE() macro"). Unfortunately, the backport
did not account for the lack of commit 9c79cdaf17c3 ("treewide: Convert
macro and uses of __section(foo) to __section("foo")") in kernels prior
to 5.10, resulting in the following orphan section warnings on PowerPC
clang builds with CONFIG_DEBUG_VM=y:

  powerpc64le-linux-gnu-ld: warning: orphan section `".data.once"' from `mm/huge_memory.o' being placed in section `".data.once"'
  powerpc64le-linux-gnu-ld: warning: orphan section `".data.once"' from `mm/huge_memory.o' being placed in section `".data.once"'
  powerpc64le-linux-gnu-ld: warning: orphan section `".data.once"' from `mm/huge_memory.o' being placed in section `".data.once"'

This is a difference between how clang and gcc handle macro
stringification, which was resolved for the kernel by not stringifying
the argument to the __section() macro. Since that change was deemed not
suitable for the stable kernels by commit 56bddfe58a07 ("once: fix
section mismatch on clang builds"), do that same thing as that change
and remove the quotes from the argument to __section().

Fixes: 3624aa286eed ("mm: add VM_WARN_ON_ONCE_PAGE() macro")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Acked-by: Hugh Dickins <hughd@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/mmdebug.h