Re: [2.5.63-bk6 compile error] __crc_page_states__per_cpu not in per-cpu section

From: Kai Germaschewski (kai@tp1.ruhr-uni-bochum.de)
Date: Mon Mar 03 2003 - 14:10:06 EST


On 3 Mar 2003, Rusty Lynch wrote:

> After updating my bk tree this morning, I am getting the
> following compile error:
>
> 4d13d7e9 A __crc_page_states__per_cpu not in per-cpu section
> make: *** [vmlinux] Error 1

It's a false positive from the script which checks whether all per-cpu
variables ended up in the correct section. __crc_page_states__per_cpu ends
in __per_cpu, that's why the script thinks it's a per-cpu variable, but
it's not, it's just a checksum.

Could you try if this patch fixes it, I don't really speak awk ;)

You should be able to reproduce the error by just doing "rm vmlinux; make
vmlinux", but not anymore after applying the patch below.

--Kai

===== scripts/per-cpu-check.awk 1.3 vs edited =====
--- 1.3/scripts/per-cpu-check.awk Fri Jan 24 14:27:01 2003
+++ edited/scripts/per-cpu-check.awk Mon Mar 3 13:05:48 2003
@@ -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;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Fri Mar 07 2003 - 22:00:22 EST