[PATCH linux-next] irq: Clear CPU mask in affinity_hint when none is provided

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Peter P Waskiewicz Jr
Date: Wednesday, May 5, 2010 - 1:56 pm

When an interrupt is disabled and torn down, the CPU mask
returned through affinity_hint right now is all CPUs.  Also, for
drivers that don't provide an affinity_hint mask, this can be
misleading.  There should be no hint at all, meaning an empty
CPU mask.

Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
---

 kernel/irq/proc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/irq/proc.c b/kernel/irq/proc.c
index e1e7408..9ffa24d 100644
--- a/kernel/irq/proc.c
+++ b/kernel/irq/proc.c
@@ -45,7 +45,7 @@ static int irq_affinity_hint_proc_show(struct seq_file *m, void *v)
 	if (desc->affinity_hint)
 		cpumask_copy(mask, desc->affinity_hint);
 	else
-		cpumask_setall(mask);
+		cpumask_clear(mask);
 	raw_spin_unlock_irqrestore(&desc->lock, flags);
 
 	seq_cpumask(m, mask);

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH linux-next] irq: Clear CPU mask in affinity_hint wh ..., Peter P Waskiewicz Jr, (Wed May 5, 1:56 pm)
[tip:irq/core] genirq: Clear CPU mask in affinity_hint whe ..., tip-bot for Peter P ..., (Wed May 12, 2:27 am)