Received: from milmhbs1.lsil.com (147.145.21.209) by coscas01.lsi.com
 (172.21.36.60) with Microsoft SMTP Server id 8.1.393.1; Mon, 21 Sep 2009
 15:14:15 -0600
Received: from mail2.lsil.com (mail2.lsil.com [147.145.40.22])	by
 milmhbs1.lsil.com (8.12.11/8.12.11) with ESMTP id n8LLEBxH006547	for
 <andy.sharp@lsi.com>; Mon, 21 Sep 2009 14:14:11 -0700
Received: from psmtp.com (na3sys009amx195.postini.com [74.125.149.176])	by
 mail2.lsil.com (8.12.11/8.12.11) with SMTP id n8LLAjr6028415	for
 <andy.sharp@lsi.com>; Mon, 21 Sep 2009 14:10:46 -0700 (PDT)
Received: from source ([78.24.191.182]) by na3sys009amx195.postini.com
 ([74.125.148.14]) with SMTP;	Mon, 21 Sep 2009 16:14:09 CDT
Received: from localhost.localdomain ([127.0.0.1]:38652 "EHLO
	eddie.linux-mips.org" rhost-flags-OK-OK-OK-FAIL) by ftp.linux-mips.org	with
 ESMTP id S1493314AbZIUVOA (ORCPT <rfc822;andy.sharp@lsi.com>);	Mon, 21 Sep
 2009 23:14:00 +0200
Received: with ECARTIS (v1.0.0; list linux-mips); Mon, 21 Sep 2009 23:13:42
 +0200 (CEST)
Received: from mail.upwardaccess.com ([70.89.180.121]:1807 "EHLO
	upwardaccess.com" rhost-flags-OK-OK-OK-OK) by ftp.linux-mips.org	with ESMTP
 id S1493265AbZIUVNe (ORCPT	<rfc822;linux-mips@linux-mips.org>); Mon, 21 Sep
 2009 23:13:34 +0200
Received: from hawaii.upwardaccess.com (unverified [10.61.7.126]) 	by
 upwardaccess.com (SurgeMail 3.9e) with ESMTP id 895964-1847469 	for
 <linux-mips@linux-mips.org>; Mon, 21 Sep 2009 14:12:58 -0700
Received: by hawaii.upwardaccess.com (Postfix, from userid 500)	id
 047F335425B; Mon, 21 Sep 2009 14:13:24 -0700 (PDT)
From: Mark Mason <mmason@upwardaccess.com>
To: "linux-mips@linux-mips.org" <linux-mips@linux-mips.org>
CC: Mark Mason <mmason@upwardaccess.com>
Sender: "linux-mips-bounce@linux-mips.org" <linux-mips-bounce@linux-mips.org>
Date: Mon, 21 Sep 2009 15:13:24 -0600
Subject: [PATCH] When complaining about attempting to set the irq affinity
 to multiple cpus,
Thread-Topic: [PATCH] When complaining about attempting to set the irq
 affinity to multiple cpus,
Thread-Index: Aco7AHnmiksYFjFbSxa9PDaiFhSv8Q==
Message-ID: <1253567604-6734-1-git-send-email-mmason@upwardaccess.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Exchange-Organization-AuthAs: Anonymous
X-MS-Exchange-Organization-AuthSource: coscas01.lsi.com
X-MS-Has-Attach:
X-Auto-Response-Suppress: All
X-MS-TNEF-Correlator:
x-scanned-by: MIMEDefang 2.39
errors-to: linux-mips-bounce@linux-mips.org
x-pstn-neptune: 0/0/0.00/0
x-pstn-levels: (S: 5.84156/99.90000 CV:99.9000 FC:95.5390 LC:95.5390
 R:95.9108 P:95.9108 M:97.0282 C:98.6951 )
x-pstn-settings: 3 (1.0000:1.0000) s cv gt3 gt2 gt1 r p m c 
x-pstn-addresses: from <mmason@upwardaccess.com> [db-null] 
x-originating-ip: 10.61.7.126
x-authenticated-user: mmason@upwardaccess.com 
x-archive-position: 24065
x-ecartis-version: Ecartis v1.0.0
x-original-sender: mmason@upwardaccess.com
x-list: linux-mips
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

---
 arch/mips/sibyte/bcm1480/irq.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/arch/mips/sibyte/bcm1480/irq.c b/arch/mips/sibyte/bcm1480/irq.=
c
index ba59839..fc87ea4 100644
--- a/arch/mips/sibyte/bcm1480/irq.c
+++ b/arch/mips/sibyte/bcm1480/irq.c
@@ -118,7 +118,11 @@ static int bcm1480_set_affinity(unsigned int irq, cons=
t struct cpumask *mask)
 	unsigned int irq_dirty;
=20
 	if (cpumask_weight(mask) !=3D 1) {
-		printk("attempted to set irq affinity for irq %d to multiple CPUs\n", ir=
q);
+		printk("attempted to set irq affinity for irq %d to multiple CPUs:", irq=
);
+		/* Print the mask */
+		for_each_cpu(i, mask)
+			printk(" %d", i);
+		printk("\n");
 		return -1;
 	}
 	i =3D cpumask_first(mask);
--=20
1.6.0.2


