diff -r a1482fd74530 xen/arch/ia64/linux-xen/iosapic.c --- a/xen/arch/ia64/linux-xen/iosapic.c Sun Jul 09 22:50:43 2006 -0600 +++ b/xen/arch/ia64/linux-xen/iosapic.c Mon Jul 10 09:31:14 2006 -0600 @@ -1155,7 +1155,7 @@ int iosapic_guest_read(unsigned long phy int iosapic_guest_write(unsigned long physbase, unsigned int reg, u32 val) { - unsigned int id, gsi, vec, dest, high32; + unsigned int id, gsi, vec, xen_vec, dest, high32; char rte_index; struct iosapic *ios; struct iosapic_intr_info *info; @@ -1185,13 +1185,17 @@ int iosapic_guest_write(unsigned long ph /* Sanity check. Vector should be allocated before this update */ if ((rte_index > ios->num_rte) || - test_bit(vec, ia64_xen_vector) || ((vec > IA64_FIRST_DEVICE_VECTOR) && (vec < IA64_LAST_DEVICE_VECTOR) && (!test_bit(vec - IA64_FIRST_DEVICE_VECTOR, ia64_vector_mask)))) return -EINVAL; gsi = ios->gsi_base + rte_index; + xen_vec = gsi_to_vector(gsi); + if (xen_vec >= 0 && test_bit(xen_vec, ia64_xen_vector)) { + printk("WARN: GSI %d in use by Xen.\n", gsi); + return -EINVAL; + } info = &iosapic_intr_info[vec]; spin_lock_irqsave(&irq_descp(vec)->lock, flags); spin_lock(&iosapic_lock);