numam-dpdk/devtools/check-symbol-maps.sh
David Marchand cf8a9e93ac build: check symbol maps in developer mode
Hook check-symbol-maps.sh in the symbol check when in developer mode to
help developers catch issues before submitting their changes.

Signed-off-by: David Marchand <david.marchand@redhat.com>
Reviewed-by: Ray Kinsella <mdr@ashroe.eu>
2021-05-19 12:51:41 +02:00

57 lines
1.3 KiB
Bash
Executable File

#! /bin/sh -e
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018 Mellanox Technologies, Ltd
cd $(dirname $0)/..
# speed up by ignoring Unicode details
export LC_ALL=C
if [ $# = 0 ] ; then
set -- $(find lib drivers -name '*.map')
fi
ret=0
find_orphan_symbols ()
{
for map in $@ ; do
for sym in $(sed -rn 's,^([^}]*_.*);.*$,\1,p' $map) ; do
if echo $sym | grep -q '^per_lcore_' ; then
symsrc=${sym#per_lcore_}
elif echo $sym | grep -q '^__rte_.*_trace_' ; then
symsrc=${sym#__}
else
symsrc=$sym
fi
if [ -z "$(grep -rlw $symsrc $(dirname $map) | grep -v $map)" ] ; then
echo "$map: $sym"
fi
done
done
}
orphan_symbols=$(find_orphan_symbols $@)
if [ -n "$orphan_symbols" ] ; then
echo "Found only in symbol map file:"
echo "$orphan_symbols" | sed 's,^,\t,'
ret=1
fi
find_duplicate_symbols ()
{
for map in $@ ; do
buildtools/map-list-symbol.sh $map | \
sort | uniq -c | grep -v " 1 $map" || true
done
}
duplicate_symbols=$(find_duplicate_symbols $@)
if [ -n "$duplicate_symbols" ] ; then
echo "Found duplicates in symbol map file:"
echo "$duplicate_symbols"
ret=1
fi
exit $ret