diff options
| author | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2003-03-05 07:53:26 -0600 |
|---|---|---|
| committer | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2003-03-05 07:53:26 -0600 |
| commit | dc39134c17c95476ffed4cbbf4f97ae961395d32 (patch) | |
| tree | 3277797b76c0d8a1636c9f036d516f0580b69d2d /scripts/per-cpu-check.awk | |
| parent | f01dc2a743b88b83b124bf3279e381bc335d9b20 (diff) | |
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/per-cpu-check.awk')
| -rw-r--r-- | scripts/per-cpu-check.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/per-cpu-check.awk b/scripts/per-cpu-check.awk index 3be9f0d25ebd..3c54bb47928f 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; |
