All of lore.kernel.org
 help / color / mirror / Atom feed
From: Russ Dill <Russ.Dill@ti.com>
To: Pantelis Antoniou <panto@antoniou-consulting.com>
Cc: <linux-kernel@vger.kernel.org>, <linux@arm.linux.org.uk>,
	<mporter@ti.com>
Subject: Re: [PATCH] [ARM] Unconditional call to smp_cross_call on UP crashes
Date: Wed, 23 May 2012 10:45:44 -0700	[thread overview]
Message-ID: <4FBD2248.3000404@ti.com> (raw)
In-Reply-To: <1337879399-9998-1-git-send-email-panto@antoniou-consulting.com>

On 05/24/2012 10:09 AM, Pantelis Antoniou wrote:
> omap2plus_defconfig builds with SMP & SMP_ON_UP set.
> On beagle (which is UP) is_smp() returns false and we don't call
> smp_init_cpus which in turn does not initialize smp_cross_call which
> remains NULL.
>
> When issuing a reboot we OOPS with a NULL dereference on stop smp_call.
>
> Fixed by checking is_smp in smp_send_stop()
> ---
>  arch/arm/kernel/smp.c |    4 ++++
>  1 files changed, 4 insertions(+), 0 deletions(-)

Acked-by: Russ.Dill@ti.com

> diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c
> index 8f46446..2a61335 100644
> --- a/arch/arm/kernel/smp.c
> +++ b/arch/arm/kernel/smp.c
> @@ -588,6 +588,10 @@ void smp_send_stop(void)
>  	unsigned long timeout;
>  	struct cpumask mask;
>  
> +	/* make sure we don't bother if not SMP */
> +	if (!is_smp())
> +		return;
> +
>  	cpumask_copy(&mask, cpu_online_mask);
>  	cpumask_clear_cpu(smp_processor_id(), &mask);
>  	smp_cross_call(&mask, IPI_CPU_STOP);



  reply	other threads:[~2012-05-23 17:45 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-24 17:09 [PATCH] [ARM] Unconditional call to smp_cross_call on UP crashes Pantelis Antoniou
2012-05-23 17:45 ` Russ Dill [this message]
2012-05-23 18:52 ` Russell King - ARM Linux
2012-05-23 19:17   ` Russell King - ARM Linux
2012-05-23 18:55 ` Porter, Matt
  -- strict thread matches above, loose matches on Subject: below --
2012-05-24 19:38 Pantelis Antoniou
2012-05-24 19:40 Pantelis Antoniou
2012-05-24 19:50 Pantelis Antoniou
2012-05-24 19:50 ` Pantelis Antoniou
2012-05-24 16:17 ` Russell King - ARM Linux
2012-05-24 16:17   ` Russell King - ARM Linux
2012-05-24 16:55   ` Pantelis Antoniou
2012-05-24 16:55     ` Pantelis Antoniou
2012-05-24 17:15     ` Russell King - ARM Linux
2012-05-24 17:15       ` Russell King - ARM Linux

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4FBD2248.3000404@ti.com \
    --to=russ.dill@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=mporter@ti.com \
    --cc=panto@antoniou-consulting.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.