mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
Commit 9c7dc1dd89 ("objtool: Warn on functions with ambiguous
-ffunction-sections section names") only works for drivers which are
compiled on architectures supported by objtool.
Make a script to perform the same check for all architectures.
Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://patch.msgid.link/a6a49644a34964f7e02f3a8ce43af03e72817180.1763669451.git.jpoimboe@kernel.org
26 lines
638 B
Bash
Executable File
26 lines
638 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Certain function names are disallowed due to section name ambiguities
|
|
# introduced by -ffunction-sections.
|
|
#
|
|
# See the comment above TEXT_MAIN in include/asm-generic/vmlinux.lds.h.
|
|
|
|
objfile="$1"
|
|
|
|
if [ ! -f "$objfile" ]; then
|
|
echo "usage: $0 <file.o>" >&2
|
|
exit 1
|
|
fi
|
|
|
|
bad_symbols=$(nm "$objfile" | awk '$2 ~ /^[TtWw]$/ {print $3}' | grep -E '^(startup|exit|split|unlikely|hot|unknown)(\.|$)')
|
|
|
|
if [ -n "$bad_symbols" ]; then
|
|
echo "$bad_symbols" | while read -r sym; do
|
|
echo "$objfile: error: $sym() function name creates ambiguity with -ffunction-sections" >&2
|
|
done
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|