]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap.
authorStefan Bader <stefan.bader@canonical.com>
Sat, 27 Sep 2008 15:07:30 +0000 (11:07 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Sat, 18 Oct 2008 17:49:11 +0000 (10:49 -0700)
commit7ae3a769f9cbde6564b7335b0ea45d19066c7f7c
treebc7a2e4ed5b999616967c97f12e3d1db27a4c6f9
parentd49d50a98a807e9322bc287e5da26d70168cd4c0
x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap.

Not in upstream above 2.6.27 due to change in the way this code works
(has been fixed differently there.)

Someone from the community found out, that after repeatedly unloading
and loading a device driver that uses MSI IRQs, the system eventually
assigned the vector initially reserved for IRQ0 to the device driver.

The reason for this is, that although IRQ0 is tied to the
FIRST_DEVICE_VECTOR when declaring the irq_vector table, the
corresponding bit in the used_vectors map is not set. So, if vectors are
released and assigned often enough, the vector will get assigned to
another interrupt. This happens more often with MSI interrupts as those
are exclusively using a vector.

Fix this by setting the bit for the FIRST_DEVICE_VECTOR in the bitmap.

Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
arch/x86/kernel/io_apic_32.c