diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-01-31 02:57:41 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-01-31 02:57:41 -0500 |
commit | 1fb0ef31f428f345a7c3666f8e7444a563edd537 (patch) | |
tree | aef752257568dfc69e76902750937514cac95cf0 /kernel/irq/manage.c | |
parent | cd7eab44e9946c28d595abe3e9a43e945bc49141 (diff) |
genirq: Fix affinity notifier fallout
The new code of commit cd7eab44e(genirq: Add IRQ affinity notifiers)
references irq_desc.affinity which fails to compile with
CONFIG_GENERIC_HARDIRQS_NO_DEPRECATED=y.
Use irq_desc.irq_data.affinity instead.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Ben Hutchings <bhutchings@solarflare.com>
Diffstat (limited to 'kernel/irq/manage.c')
-rw-r--r-- | kernel/irq/manage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index 0587c5ceaed8..538fce2db51c 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c | |||
@@ -179,7 +179,7 @@ static void irq_affinity_notify(struct work_struct *work) | |||
179 | cpumask_copy(cpumask, desc->pending_mask); | 179 | cpumask_copy(cpumask, desc->pending_mask); |
180 | else | 180 | else |
181 | #endif | 181 | #endif |
182 | cpumask_copy(cpumask, desc->affinity); | 182 | cpumask_copy(cpumask, desc->irq_data.affinity); |
183 | raw_spin_unlock_irqrestore(&desc->lock, flags); | 183 | raw_spin_unlock_irqrestore(&desc->lock, flags); |
184 | 184 | ||
185 | notify->notify(notify, cpumask); | 185 | notify->notify(notify, cpumask); |