]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
elfcore: fix building with clang
authorArnd Bergmann <arnd@arndb.de>
Fri, 11 Dec 2020 21:36:46 +0000 (13:36 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 10 Feb 2021 08:07:27 +0000 (09:07 +0100)
commit3140b0740b31cc63cf2ee08bc3f746b423eb068d
tree43916e9b5c7a13b696215cfe92d6065b079ecdc6
parenteab1253fdecfa3391aad6f427ee7937ef85830ba
elfcore: fix building with clang

commit 6e7b64b9dd6d96537d816ea07ec26b7dedd397b9 upstream.

kernel/elfcore.c only contains weak symbols, which triggers a bug with
clang in combination with recordmcount:

  Cannot find symbol for section 2: .text.
  kernel/elfcore.o: failed

Move the empty stubs into linux/elfcore.h as inline functions.  As only
two architectures use these, just use the architecture specific Kconfig
symbols to key off the declaration.

Link: https://lkml.kernel.org/r/20201204165742.3815221-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Nathan Chancellor <natechancellor@gmail.com>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Barret Rhoden <brho@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/elfcore.h
kernel/Makefile
kernel/elfcore.c [deleted file]