Commit e3a01cbe authored by Anton Ivanov's avatar Anton Ivanov Committed by Richard Weinberger

um: Monitor error events in IRQ controller

Ensure that file closes, connection closes, etc are propagated
as interrupts in the interrupt controller.

Fixes: ff6a1798 ("Epoll based IRQ controller")
Signed-off-by: default avatarAnton Ivanov <anton.ivanov@cambridgegreys.com>
Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
parent ef4459a6
...@@ -48,7 +48,7 @@ int os_epoll_triggered(int index, int events) ...@@ -48,7 +48,7 @@ int os_epoll_triggered(int index, int events)
int os_event_mask(enum um_irq_type irq_type) int os_event_mask(enum um_irq_type irq_type)
{ {
if (irq_type == IRQ_READ) if (irq_type == IRQ_READ)
return EPOLLIN | EPOLLPRI; return EPOLLIN | EPOLLPRI | EPOLLERR | EPOLLHUP | EPOLLRDHUP;
if (irq_type == IRQ_WRITE) if (irq_type == IRQ_WRITE)
return EPOLLOUT; return EPOLLOUT;
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment