--- 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, const struct cpumask *mask) unsigned int irq_dirty; if (cpumask_weight(mask) != 1) { - printk("attempted to set irq affinity for irq %d to multiple CPUs\n", irq); + 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 = cpumask_first(mask); -- 1.6.0.2