linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC][PATCH] Compilation fix 2.4.20-pre7
@ 2002-09-24  4:38 Bongani
  0 siblings, 0 replies; 2+ messages in thread
From: Bongani @ 2002-09-24  4:38 UTC (permalink / raw)
  To: Marcelo Tosatti; +Cc: lkml, Ian Carr-de Avelon

Hi Marcelo

Ian had some compilation error while trying to compile 2.4.20-pre7
this is the error that he got:

/usr/src/linux/include/linux/kernel_stat.h: In function `kstat_irqs':
/usr/src/linux/include/linux/kernel_stat.h:57: `smp_num_cpus' undeclared
(first use in this function)
/usr/src/linux/include/linux/kernel_stat.h:57: (Each undeclared
identifier is reported only once
/usr/src/linux/include/linux/kernel_stat.h:57: for each function it
appears in.)make[2]:
*** [ksyms.o] Error 1
make[2]: Leaving directory `/usr/src/linux/kernel'
make[1]: *** [first_rule] Error 2
make[1]: Leaving directory `/usr/src/linux/kernel'
make: *** [_dir_kernel] Error 2


He got this when he was compiling a UP kernel. When
he tries to compile for a SMP kernel the error goes away.
Which makes sense because smp_num_cpus is only defined fro SMP
kernels. Does the following patch look OK? This is adopted from 2.5.38.

Cheers


diff -uNr include/linux/kernel_stat.h~ include/linux/kernel_stat.h 
--- include/linux/kernel_stat.h~        2002-09-23 16:16:45.000000000
+0200
+++ include/linux/kernel_stat.h 2002-09-23 16:42:42.000000000 +0200
@@ -54,7 +54,7 @@
 {
        int i, sum=0;
 
-       for (i = 0 ; i < smp_num_cpus ; i++)
+       for (i = 0 ; i < NR_CPUS ; i++)
                sum += kstat.irqs[cpu_logical_map(i)][irq];
 
        return sum



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [RFC][PATCH] Compilation fix 2.4.20-pre7
@ 2002-09-24  4:38 Bongani
  0 siblings, 0 replies; 2+ messages in thread
From: Bongani @ 2002-09-24  4:38 UTC (permalink / raw)
  To: Marcelo Tosatti; +Cc: lkml, Ian Carr-de Avelon

Hi Marcelo

Ian had some compilation error while trying to compile 2.4.20-pre7
this is the error that he got:

/usr/src/linux/include/linux/kernel_stat.h: In function `kstat_irqs':
/usr/src/linux/include/linux/kernel_stat.h:57: `smp_num_cpus' undeclared
(first use in this function)
/usr/src/linux/include/linux/kernel_stat.h:57: (Each undeclared
identifier is reported only once
/usr/src/linux/include/linux/kernel_stat.h:57: for each function it
appears in.)make[2]:
*** [ksyms.o] Error 1
make[2]: Leaving directory `/usr/src/linux/kernel'
make[1]: *** [first_rule] Error 2
make[1]: Leaving directory `/usr/src/linux/kernel'
make: *** [_dir_kernel] Error 2


He got this when he was compiling a UP kernel. When
he tries to compile for a SMP kernel the error goes away.
Which makes sense because smp_num_cpus is only defined fro SMP
kernels. Does the following patch look OK? This is adopted from 2.5.38.

Cheers


diff -uNr include/linux/kernel_stat.h~ include/linux/kernel_stat.h 
--- include/linux/kernel_stat.h~        2002-09-23 16:16:45.000000000
+0200
+++ include/linux/kernel_stat.h 2002-09-23 16:42:42.000000000 +0200
@@ -54,7 +54,7 @@
 {
        int i, sum=0;
 
-       for (i = 0 ; i < smp_num_cpus ; i++)
+       for (i = 0 ; i < NR_CPUS ; i++)
                sum += kstat.irqs[cpu_logical_map(i)][irq];
 
        return sum



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-09-24  4:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-09-24  4:38 [RFC][PATCH] Compilation fix 2.4.20-pre7 Bongani
2002-09-24  4:38 Bongani

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).