* [PATCH RFC] ppc: fix default_machine_crash_shutdown #ifdef botch
@ 2010-06-16 0:48 Paul E. McKenney
2010-06-17 1:56 ` Michael Neuling
0 siblings, 1 reply; 3+ messages in thread
From: Paul E. McKenney @ 2010-06-16 0:48 UTC (permalink / raw)
To: linuxppc-dev
crash_kexec_wait_realmode() is defined only if CONFIG_PPC_STD_MMU_64
and CONFIG_SMP, but is called if CONFIG_PPC_STD_MMU_64 even if !CONFIG_SMP.
Fix the conditional compilation around the invocation.
Untested, probably does not compile.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
---
diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c
index b46f2e0..29df48f 100644
--- a/arch/powerpc/kernel/crash.c
+++ b/arch/powerpc/kernel/crash.c
@@ -447,7 +447,7 @@ void default_machine_crash_shutdown(struct pt_regs *regs)
crash_kexec_prepare_cpus(crashing_cpu);
cpu_set(crashing_cpu, cpus_in_crash);
crash_kexec_stop_spus();
-#ifdef CONFIG_PPC_STD_MMU_64
+#if defined(CONFIG_PPC_STD_MMU_64) && defined(CONFIG_SMP)
crash_kexec_wait_realmode(crashing_cpu);
#endif
if (ppc_md.kexec_cpu_down)
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH RFC] ppc: fix default_machine_crash_shutdown #ifdef botch
2010-06-16 0:48 [PATCH RFC] ppc: fix default_machine_crash_shutdown #ifdef botch Paul E. McKenney
@ 2010-06-17 1:56 ` Michael Neuling
2010-06-17 4:30 ` Paul E. McKenney
0 siblings, 1 reply; 3+ messages in thread
From: Michael Neuling @ 2010-06-17 1:56 UTC (permalink / raw)
To: paulmck; +Cc: linuxppc-dev
In message <20100616004839.GA18110@linux.vnet.ibm.com> you wrote:
> crash_kexec_wait_realmode() is defined only if CONFIG_PPC_STD_MMU_64
> and CONFIG_SMP, but is called if CONFIG_PPC_STD_MMU_64 even if !CONFIG_SMP.
> Fix the conditional compilation around the invocation.
>
> Untested, probably does not compile.
>
> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
This should be right since we don't need to wait for the other CPUs if
there are no others...
Compiles for me and even fixes the SMP=N case. Thanks!
Acked-by: Michael Neuling <mikey@neuling.org>
> ---
>
> diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c
> index b46f2e0..29df48f 100644
> --- a/arch/powerpc/kernel/crash.c
> +++ b/arch/powerpc/kernel/crash.c
> @@ -447,7 +447,7 @@ void default_machine_crash_shutdown(struct pt_regs *regs)
> crash_kexec_prepare_cpus(crashing_cpu);
> cpu_set(crashing_cpu, cpus_in_crash);
> crash_kexec_stop_spus();
> -#ifdef CONFIG_PPC_STD_MMU_64
> +#if defined(CONFIG_PPC_STD_MMU_64) && defined(CONFIG_SMP)
> crash_kexec_wait_realmode(crashing_cpu);
> #endif
> if (ppc_md.kexec_cpu_down)
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH RFC] ppc: fix default_machine_crash_shutdown #ifdef botch
2010-06-17 1:56 ` Michael Neuling
@ 2010-06-17 4:30 ` Paul E. McKenney
0 siblings, 0 replies; 3+ messages in thread
From: Paul E. McKenney @ 2010-06-17 4:30 UTC (permalink / raw)
To: Michael Neuling; +Cc: linuxppc-dev
On Thu, Jun 17, 2010 at 11:56:53AM +1000, Michael Neuling wrote:
>
>
> In message <20100616004839.GA18110@linux.vnet.ibm.com> you wrote:
> > crash_kexec_wait_realmode() is defined only if CONFIG_PPC_STD_MMU_64
> > and CONFIG_SMP, but is called if CONFIG_PPC_STD_MMU_64 even if !CONFIG_SMP.
> > Fix the conditional compilation around the invocation.
> >
> > Untested, probably does not compile.
> >
> > Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
>
> This should be right since we don't need to wait for the other CPUs if
> there are no others...
>
> Compiles for me and even fixes the SMP=N case. Thanks!
Glad it worked! ;-)
Thanx, Paul
> Acked-by: Michael Neuling <mikey@neuling.org>
>
> > ---
> >
> > diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c
> > index b46f2e0..29df48f 100644
> > --- a/arch/powerpc/kernel/crash.c
> > +++ b/arch/powerpc/kernel/crash.c
> > @@ -447,7 +447,7 @@ void default_machine_crash_shutdown(struct pt_regs *regs)
> > crash_kexec_prepare_cpus(crashing_cpu);
> > cpu_set(crashing_cpu, cpus_in_crash);
> > crash_kexec_stop_spus();
> > -#ifdef CONFIG_PPC_STD_MMU_64
> > +#if defined(CONFIG_PPC_STD_MMU_64) && defined(CONFIG_SMP)
> > crash_kexec_wait_realmode(crashing_cpu);
> > #endif
> > if (ppc_md.kexec_cpu_down)
> > _______________________________________________
> > Linuxppc-dev mailing list
> > Linuxppc-dev@lists.ozlabs.org
> > https://lists.ozlabs.org/listinfo/linuxppc-dev
> >
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-06-17 4:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-16 0:48 [PATCH RFC] ppc: fix default_machine_crash_shutdown #ifdef botch Paul E. McKenney
2010-06-17 1:56 ` Michael Neuling
2010-06-17 4:30 ` Paul E. McKenney
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).