]> git.karo-electronics.de Git - karo-tx-linux.git/commit
PCI: msi: Disable msi interrupts when we initialize a pci device
authorEric W. Biederman <ebiederm@xmission.com>
Mon, 17 Oct 2011 18:46:06 +0000 (11:46 -0700)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Tue, 13 Dec 2011 18:41:49 +0000 (10:41 -0800)
commit22290d9ecd8daf87d0e939a0753bccbaeaa5f7d5
tree00340f7a3ebf2818f3d899eeb4eacac4dc3d028e
parente6be6807db2cdcae9e022d80ff9b5e52f89fbcb4
PCI: msi: Disable msi interrupts when we initialize a pci device

I traced a nasty kexec on panic boot failure to the fact that we had
screaming msi interrupts and we were not disabling the msi messages at
kernel startup.  The booting kernel had not enabled those interupts so
was not prepared to handle them.

I can see no reason why we would ever want to leave the msi interrupts
enabled at boot if something else has enabled those interrupts.  The pci
spec specifies that msi interrupts should be off by default.  Drivers
are expected to enable the msi interrupts if they want to use them.  Our
interrupt handling code reprograms the interrupt handlers at boot and
will not be be able to do anything useful with an unexpected interrupt.

This patch applies cleanly all of the way back to 2.6.32 where I noticed
the problem.

Cc: stable@kernel.org
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
drivers/pci/msi.c