aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/events.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c
index 6782251e4029..7c3668960c75 100644
--- a/drivers/xen/events.c
+++ b/drivers/xen/events.c
@@ -423,15 +423,8 @@ static int xen_allocate_irq_dynamic(void)
423 first = get_nr_irqs_gsi(); 423 first = get_nr_irqs_gsi();
424#endif 424#endif
425 425
426retry:
427 irq = irq_alloc_desc_from(first, -1); 426 irq = irq_alloc_desc_from(first, -1);
428 427
429 if (irq == -ENOMEM && first > NR_IRQS_LEGACY) {
430 printk(KERN_ERR "Out of dynamic IRQ space and eating into GSI space. You should increase nr_irqs\n");
431 first = max(NR_IRQS_LEGACY, first - NR_IRQS_LEGACY);
432 goto retry;
433 }
434
435 if (irq < 0) 428 if (irq < 0)
436 panic("No available IRQ to bind to: increase nr_irqs!\n"); 429 panic("No available IRQ to bind to: increase nr_irqs!\n");
437 430