diff options
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/hppa/intr.c | 3 | ||||
-rw-r--r-- | sys/arch/hppa/hppa/trap.c | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hppa/hppa/intr.c b/sys/arch/hppa/hppa/intr.c index 7ff3d9764f1..e14d57e19f7 100644 --- a/sys/arch/hppa/hppa/intr.c +++ b/sys/arch/hppa/hppa/intr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.c,v 1.21 2004/07/13 19:12:30 mickey Exp $ */ +/* $OpenBSD: intr.c,v 1.22 2004/07/13 19:34:22 mickey Exp $ */ /* * Copyright (c) 2002-2004 Michael Shalayeff @@ -290,6 +290,7 @@ cpu_intr(void *v) if (iv->flags & HPPA_IV_CALL) continue; + uvmexp.intrs++; if (iv->flags & HPPA_IV_SOFT) uvmexp.softs++; diff --git a/sys/arch/hppa/hppa/trap.c b/sys/arch/hppa/hppa/trap.c index 4d6608daf5b..0999336d0c0 100644 --- a/sys/arch/hppa/hppa/trap.c +++ b/sys/arch/hppa/hppa/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.79 2004/07/02 04:19:50 mickey Exp $ */ +/* $OpenBSD: trap.c,v 1.80 2004/07/13 19:34:23 mickey Exp $ */ /* * Copyright (c) 1998-2004 Michael Shalayeff @@ -229,8 +229,7 @@ trap(type, frame) if (trapnum != T_INTERRUPT) { uvmexp.traps++; mtctl(frame->tf_eiem, CR_EIEM); - } else - uvmexp.intrs++; + } switch (type) { case T_NONEXIST: |