aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen/events.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xen/events.c')
-rw-r--r--drivers/xen/events.c25
1 files changed, 20 insertions, 5 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c
index 1e39908d02f9..bab5ac18fe0e 100644
--- a/drivers/xen/events.c
+++ b/drivers/xen/events.c
@@ -368,8 +368,13 @@ static int find_unbound_irq(void)
368{ 368{
369 struct irq_data *data; 369 struct irq_data *data;
370 int irq, res; 370 int irq, res;
371 int start = get_nr_hw_irqs();
371 372
372 for (irq = 0; irq < nr_irqs; irq++) { 373 if (start == nr_irqs)
374 goto no_irqs;
375
376 /* nr_irqs is a magic value. Must not use it.*/
377 for (irq = nr_irqs-1; irq > start; irq--) {
373 data = irq_get_irq_data(irq); 378 data = irq_get_irq_data(irq);
374 /* only 0->15 have init'd desc; handle irq > 16 */ 379 /* only 0->15 have init'd desc; handle irq > 16 */
375 if (!data) 380 if (!data)
@@ -382,8 +387,8 @@ static int find_unbound_irq(void)
382 return irq; 387 return irq;
383 } 388 }
384 389
385 if (irq == nr_irqs) 390 if (irq == start)
386 panic("No available IRQ to bind to: increase nr_irqs!\n"); 391 goto no_irqs;
387 392
388 res = irq_alloc_desc_at(irq, 0); 393 res = irq_alloc_desc_at(irq, 0);
389 394
@@ -391,6 +396,9 @@ static int find_unbound_irq(void)
391 return -1; 396 return -1;
392 397
393 return irq; 398 return irq;
399
400no_irqs:
401 panic("No available IRQ to bind to: increase nr_irqs!\n");
394} 402}
395 403
396static bool identity_mapped_irq(unsigned irq) 404static bool identity_mapped_irq(unsigned irq)
@@ -544,8 +552,15 @@ static int find_irq_by_gsi(unsigned gsi)
544 return -1; 552 return -1;
545} 553}
546 554
547/* 555/* xen_allocate_irq might allocate irqs from the top down, as a
548 * Allocate a physical irq, along with a vector. We don't assign an 556 * consequence don't assume that the irq number returned has a low value
557 * or can be used as a pirq number unless you know otherwise.
558 *
559 * One notable exception is when xen_allocate_irq is called passing an
560 * hardware gsi as argument, in that case the irq number returned
561 * matches the gsi number passed as first argument.
562
563 * Note: We don't assign an
549 * event channel until the irq actually started up. Return an 564 * event channel until the irq actually started up. Return an
550 * existing irq if we've already got one for the gsi. 565 * existing irq if we've already got one for the gsi.
551 */ 566 */