summaryrefslogtreecommitdiff
path: root/sys/arch/vax/uba
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2008-08-18 23:09:43 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2008-08-18 23:09:43 +0000
commit715bb91dd1ac9b9b2b221c73e99f3a3904a9f6dc (patch)
tree74a8746da34ff6c6b3f19bb60b81eecc62ba2224 /sys/arch/vax/uba
parentb33170830ef3885c9e56e01dca81249c0fb29bfd (diff)
Increment device interrupt event counter when redispatching an interrupt.
Diffstat (limited to 'sys/arch/vax/uba')
-rw-r--r--sys/arch/vax/uba/uba_sbi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/vax/uba/uba_sbi.c b/sys/arch/vax/uba/uba_sbi.c
index b6ee3c9a3bd..f2c57de9ad8 100644
--- a/sys/arch/vax/uba/uba_sbi.c
+++ b/sys/arch/vax/uba/uba_sbi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uba_sbi.c,v 1.4 2005/11/24 04:55:18 brad Exp $ */
+/* $OpenBSD: uba_sbi.c,v 1.5 2008/08/18 23:09:42 miod Exp $ */
/* $NetBSD: uba_sbi.c,v 1.1 1999/06/21 16:23:01 ragge Exp $ */
/*
* Copyright (c) 1996 Jonathan Stone.
@@ -224,6 +224,7 @@ uba_dw780int(uba)
func = scb_vec[vec/4].hoppaddr;
arg = scb_vec[vec/4].pushlarg;
(*func)(arg);
+ scb_vec[vec/4].ev->ec_count++;
}
}