linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* error: ‘cpus_in_crash’ defined but not used
@ 2012-01-18  4:13 Christian Kujau
  2012-01-18  5:13 ` error: 'cpus_in_crash' " Christian Kujau
  0 siblings, 1 reply; 4+ messages in thread
From: Christian Kujau @ 2012-01-18  4:13 UTC (permalink / raw)
  To: LKML; +Cc: linuxppc-dev

Hi,

compiling today's git (mainline, a25a2b8) on powerpc32 gives:

  CC      arch/powerpc/kernel/crash.o
cc1: warnings being treated as errors
/usr/local/src/linux-2.6-git/arch/powerpc/kernel/crash.c:49: error: 
‘cpus_in_crash’ defined but not used
make[2]: *** [arch/powerpc/kernel/crash.o] Error 1
make[1]: *** [arch/powerpc/kernel] Error 2
make: *** [sub-make] Error 2

I think I've seen some discussion on the list where 
"treat-warnings-as-errors" for powerpc were discussed a while ago, but 
cannot remember for sure right now. Full .config:

    http://nerdbynature.de/bits/3.2.0/

Thanks,
Christian.
-- 
BOFH excuse #149:

Dew on the telephone lines.

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

* Re: error: 'cpus_in_crash' defined but not used
  2012-01-18  4:13 error: ‘cpus_in_crash’ defined but not used Christian Kujau
@ 2012-01-18  5:13 ` Christian Kujau
  2012-01-21  0:45   ` Christian Kujau
  0 siblings, 1 reply; 4+ messages in thread
From: Christian Kujau @ 2012-01-18  5:13 UTC (permalink / raw)
  To: LKML; +Cc: linuxppc-dev

On Tue, 17 Jan 2012 at 20:13, Christian Kujau wrote:
> 
> compiling today's git (mainline, a25a2b8) on powerpc32 gives:
> 
>   CC      arch/powerpc/kernel/crash.o
> cc1: warnings being treated as errors
> /usr/local/src/linux-2.6-git/arch/powerpc/kernel/crash.c:49: error: 
> ‘cpus_in_crash’ defined but not used
> make[2]: *** [arch/powerpc/kernel/crash.o] Error 1
> make[1]: *** [arch/powerpc/kernel] Error 2
> make: *** [sub-make] Error 2

I could not find cpus_in_crash anywhere in the sourcetree, except for 
arch/powerpc/kernel/crash.c. Moving the definition into the CONFIG_SMP 
ifdef helps on my UP system, of course - not sure about other machines 
though:

diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c
index 28be345..abef751 100644
--- a/arch/powerpc/kernel/crash.c
+++ b/arch/powerpc/kernel/crash.c
@@ -46,7 +46,6 @@
 
 /* This keeps a track of which one is the crashing cpu. */
 int crashing_cpu = -1;
-static atomic_t cpus_in_crash;
 static int time_to_dump;
 
 #define CRASH_HANDLER_MAX 3
@@ -66,6 +65,7 @@ static int handle_fault(struct pt_regs *regs)
 
 #ifdef CONFIG_SMP
 
+static atomic_t cpus_in_crash;
 void crash_ipi_callback(struct pt_regs *regs)
 {
 	static cpumask_t cpus_state_saved = CPU_MASK_NONE;


Christian.
-- 
BOFH excuse #272:

Netscape has crashed

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

* Re: error: 'cpus_in_crash' defined but not used
  2012-01-18  5:13 ` error: 'cpus_in_crash' " Christian Kujau
@ 2012-01-21  0:45   ` Christian Kujau
  2012-01-24 23:18     ` Benjamin Herrenschmidt
  0 siblings, 1 reply; 4+ messages in thread
From: Christian Kujau @ 2012-01-21  0:45 UTC (permalink / raw)
  To: LKML; +Cc: linuxppc-dev, benh

> On Tue, 17 Jan 2012 at 20:13, Christian Kujau wrote:
> > 
> > compiling today's git (mainline, a25a2b8) on powerpc32 gives:
> > 
> >   CC      arch/powerpc/kernel/crash.o
> > cc1: warnings being treated as errors
> > /usr/local/src/linux-2.6-git/arch/powerpc/kernel/crash.c:49: error: 
> > ‘cpus_in_crash’ defined but not used
> > make[2]: *** [arch/powerpc/kernel/crash.o] Error 1
> > make[1]: *** [arch/powerpc/kernel] Error 2
> > make: *** [sub-make] Error 2

This still happens in 3.3.0-rc1 and is fixed by the patch below.

.config is here: http://nerdbynature.de/bits/3.2.0/

Thoughts?

Thanks,
Christian.

> I could not find cpus_in_crash anywhere in the sourcetree, except for 
> arch/powerpc/kernel/crash.c. Moving the definition into the CONFIG_SMP 
> ifdef helps on my UP system, of course - not sure about other machines 
> though:
> 
> diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c
> index 28be345..abef751 100644
> --- a/arch/powerpc/kernel/crash.c
> +++ b/arch/powerpc/kernel/crash.c
> @@ -46,7 +46,6 @@
>  
>  /* This keeps a track of which one is the crashing cpu. */
>  int crashing_cpu = -1;
> -static atomic_t cpus_in_crash;
>  static int time_to_dump;
>  
>  #define CRASH_HANDLER_MAX 3
> @@ -66,6 +65,7 @@ static int handle_fault(struct pt_regs *regs)
>  
>  #ifdef CONFIG_SMP
>  
> +static atomic_t cpus_in_crash;
>  void crash_ipi_callback(struct pt_regs *regs)
>  {
>  	static cpumask_t cpus_state_saved = CPU_MASK_NONE;
> 
> 
> Christian.
> -- 
> BOFH excuse #272:
> 
> Netscape has crashed
> --
> 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/
> 

-- 
BOFH excuse #51:

Cosmic ray particles crashed through the hard disk platter

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

* Re: error: 'cpus_in_crash' defined but not used
  2012-01-21  0:45   ` Christian Kujau
@ 2012-01-24 23:18     ` Benjamin Herrenschmidt
  0 siblings, 0 replies; 4+ messages in thread
From: Benjamin Herrenschmidt @ 2012-01-24 23:18 UTC (permalink / raw)
  To: Christian Kujau; +Cc: LKML, linuxppc-dev

On Fri, 2012-01-20 at 16:45 -0800, Christian Kujau wrote:
> > On Tue, 17 Jan 2012 at 20:13, Christian Kujau wrote:
> > > 
> > > compiling today's git (mainline, a25a2b8) on powerpc32 gives:
> > > 
> > >   CC      arch/powerpc/kernel/crash.o
> > > cc1: warnings being treated as errors
> > > /usr/local/src/linux-2.6-git/arch/powerpc/kernel/crash.c:49: error: 
> > > ‘cpus_in_crash’ defined but not used
> > > make[2]: *** [arch/powerpc/kernel/crash.o] Error 1
> > > make[1]: *** [arch/powerpc/kernel] Error 2
> > > make: *** [sub-make] Error 2
> 
> This still happens in 3.3.0-rc1 and is fixed by the patch below.
> 
> .config is here: http://nerdbynature.de/bits/3.2.0/
> 
> Thoughts?

Applying now, thanks.

Cheers,
Ben.

> Thanks,
> Christian.
> 
> > I could not find cpus_in_crash anywhere in the sourcetree, except for 
> > arch/powerpc/kernel/crash.c. Moving the definition into the CONFIG_SMP 
> > ifdef helps on my UP system, of course - not sure about other machines 
> > though:
> > 
> > diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c
> > index 28be345..abef751 100644
> > --- a/arch/powerpc/kernel/crash.c
> > +++ b/arch/powerpc/kernel/crash.c
> > @@ -46,7 +46,6 @@
> >  
> >  /* This keeps a track of which one is the crashing cpu. */
> >  int crashing_cpu = -1;
> > -static atomic_t cpus_in_crash;
> >  static int time_to_dump;
> >  
> >  #define CRASH_HANDLER_MAX 3
> > @@ -66,6 +65,7 @@ static int handle_fault(struct pt_regs *regs)
> >  
> >  #ifdef CONFIG_SMP
> >  
> > +static atomic_t cpus_in_crash;
> >  void crash_ipi_callback(struct pt_regs *regs)
> >  {
> >  	static cpumask_t cpus_state_saved = CPU_MASK_NONE;
> > 
> > 
> > Christian.
> > -- 
> > BOFH excuse #272:
> > 
> > Netscape has crashed
> > --
> > 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/
> > 
> 



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

end of thread, other threads:[~2012-01-24 23:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-18  4:13 error: ‘cpus_in_crash’ defined but not used Christian Kujau
2012-01-18  5:13 ` error: 'cpus_in_crash' " Christian Kujau
2012-01-21  0:45   ` Christian Kujau
2012-01-24 23:18     ` Benjamin Herrenschmidt

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).