aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit via Bug reports for the GNU Hurd <bug-hurd@gnu.org>2024-11-23 22:20:32 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-11-24 00:04:24 +0100
commit8ef7e26975544e0acce75610be8a372e5f5c4931 (patch)
tree2bf1ef9a50af02284887ad426752e048b5a56fae
parent506878269a232a7d3722d4598d9fb57a61b5272a (diff)
downloadgnumach-8ef7e26975544e0acce75610be8a372e5f5c4931.tar.gz
gnumach-8ef7e26975544e0acce75610be8a372e5f5c4931.tar.bz2
gnumach-8ef7e26975544e0acce75610be8a372e5f5c4931.zip
device/intr: Account for interrupts that could not be delivered
When an irq handler dies, we are decrementing the n_unacked count and calling __enable_irq() the right number of times, but we need to decrement the total interrupt count by the number that were lost and also clear that number. This fixes a hang when a shared irq handler quits and leaves some unacked interrupts. Message-ID: <20241123222020.245519-1-damien@zamaudio.com>
-rw-r--r--device/intr.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/device/intr.c b/device/intr.c
index 9035c036..0d13acf7 100644
--- a/device/intr.c
+++ b/device/intr.c
@@ -307,6 +307,10 @@ intr_thread (void)
e->n_unacked--;
}
+ /* Account for all interrupts that could not be delivered */
+ irqtab.tot_num_intr -= e->interrupts;
+ e->interrupts = 0;
+
#if 0
#ifndef LINUX_DEV
// TODO: remove from the action list