mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-11 23:43:15 +00:00
dde_linux: Limit number of merged IRQs
This change makes Irq_context::_handle_one robust against misbehaving IRQ handlers that always return IRQ_HANDLED, specifically dwc_otg.
This commit is contained in:
parent
88f635b021
commit
0db203fb75
@ -97,16 +97,19 @@ class Irq_context : public Genode::List<Irq_context>::Element
|
|||||||
bool handled = false;
|
bool handled = false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* It might be that the next interrupt triggers right after the device has
|
* It might be that the next interrupt triggers right after the
|
||||||
* acknowledged the IRQ
|
* device has acknowledged the IRQ. To reduce per-IRQ context
|
||||||
|
* switches, we merge up to 'MAX_MERGED_IRQS' calls to the
|
||||||
|
* interrupt handler.
|
||||||
*/
|
*/
|
||||||
do {
|
enum { MAX_MERGED_IRQS = 8 };
|
||||||
|
for (unsigned i = 0; i < MAX_MERGED_IRQS; i++) {
|
||||||
if (h->handler(_irq, h->dev) != IRQ_HANDLED)
|
if (h->handler(_irq, h->dev) != IRQ_HANDLED)
|
||||||
return handled;
|
break;
|
||||||
|
|
||||||
handled = true;
|
handled = true;
|
||||||
|
}
|
||||||
} while (true);
|
return handled;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user