From mboxrd@z Thu Jan 1 00:00:00 1970 From: tglx@linutronix.de (Thomas Gleixner) Date: Thu, 2 Jun 2011 12:29:05 +0200 (CEST) Subject: [PATCH 3/3] mach-u300: cleanup clockevent code In-Reply-To: References: <1306876145-6778-1-git-send-email-linus.walleij@stericsson.com> <20110601092229.GE3660@n2100.arm.linux.org.uk> <4DE6ECAF.9080409@codeaurora.org> Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Thu, 2 Jun 2011, Thomas Gleixner wrote: > On Wed, 1 Jun 2011, Stephen Boyd wrote: > > Need to check that. > > > runtime? It's pretty simple and thanks for pointing it out! diff --git a/kernel/time/clockevents.c b/kernel/time/clockevents.c index c027d4f..e4c699d 100644 --- a/kernel/time/clockevents.c +++ b/kernel/time/clockevents.c @@ -182,7 +182,10 @@ void clockevents_register_device(struct clock_event_device *dev) unsigned long flags; BUG_ON(dev->mode != CLOCK_EVT_MODE_UNUSED); - BUG_ON(!dev->cpumask); + if (!dev->cpumask) { + WARN_ON(num_possible_cpus() > 1); + dev->cpumask = cpumask_of(smp_processor_id()); + } raw_spin_lock_irqsave(&clockevents_lock, flags);