aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2003-03-05 07:53:26 -0600
committerKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2003-03-05 07:53:26 -0600
commitdc39134c17c95476ffed4cbbf4f97ae961395d32 (patch)
tree3277797b76c0d8a1636c9f036d516f0580b69d2d /scripts
parentf01dc2a743b88b83b124bf3279e381bc335d9b20 (diff)
downloadhistory-dc39134c17c95476ffed4cbbf4f97ae961395d32.tar.gz
kbuild: Make per-cpu-check ignore __crc_ symbols.
We warn when symbols end in __per_cpu, but aren't in the per-cpu section. However, checksum symbols gave false positives.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/per-cpu-check.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/per-cpu-check.awk b/scripts/per-cpu-check.awk
index 3be9f0d25ebd3..3c54bb47928fe 100644
--- a/scripts/per-cpu-check.awk
+++ b/scripts/per-cpu-check.awk
@@ -6,7 +6,7 @@
IN_PER_CPU=0
}
-/__per_cpu$$/ && ! ( / __ksymtab_/ || / __kstrtab_/ || / __kcrctab_/ ) {
+/__per_cpu$$/ && ! ( / __ksymtab_/ || / __kstrtab_/ || / __kcrctab_/ || / __crc_/ ) {
if (!IN_PER_CPU) {
print $$3 " not in per-cpu section" > "/dev/stderr";
FOUND=1;