1
0
Fork 0

[IA64-SGI] fix smp_affinity redirection when using CONFIG_PCI_MSI

Redirecting interrupts using smp_affinity on altix does not work on kernels
built with CONFIG_PCI_MSI.  The problem is that move_irq() turns into a noop
if MSI is built in.  This patch calls move_native_irq() instead of move_irq()
to get around that.

Signed-off-by: Mark Maule <maule@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
hifive-unleashed-5.1
Mark Maule 2006-01-27 11:55:34 -06:00 committed by Tony Luck
parent f8efa27662
commit 689388bbf8
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ static void sn_ack_irq(unsigned int irq)
mask);
__set_bit(irq, (volatile void *)pda->sn_in_service_ivecs);
move_irq(irq);
move_native_irq(irq);
}
static void sn_end_irq(unsigned int irq)