ANDROID: modpost: add an exception for CFI stubs
authorSami Tolvanen <samitolvanen@google.com>
Thu, 4 Oct 2018 15:56:16 +0000 (08:56 -0700)
committerStricted <info@stricted.net>
Sun, 3 May 2020 04:36:24 +0000 (04:36 +0000)
commit86720406ae312d7e540c4ae7e687cd00433cfa9f
tree21c519013a77000fe38d09968b615c8f9419f559
parent36b281600cd3f940c94116eecf496d928ab12bf0
ANDROID: modpost: add an exception for CFI stubs

When CONFIG_CFI_CLANG is enabled, LLVM renames all address taken
functions by appending a .cfi postfix to their names, and creates
function stubs with the original names. The compiler always injects
these stubs to the text section, even if the function itself is
placed into init or exit sections, which creates modpost warnings.
This commit adds a modpost exception for CFI stubs to prevent the
warnings.

Bug: 117237524
Change-Id: Ieb8bf20d0c3ad7b7295c535f598370220598cdb0
Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
scripts/mod/modpost.c