diff options
author | 2011-04-13 15:23:53 +0000 | |
---|---|---|
committer | 2011-04-13 15:23:53 +0000 | |
commit | cc4a86a95d49ec84631a1a176adb201ab0f27003 (patch) | |
tree | 280aa81c285ae54fbbb75d164549ff66ba4a83c6 | |
parent | Do not use a virtual address whilst in physical mode. Instead save the sp (diff) | |
download | wireguard-openbsd-cc4a86a95d49ec84631a1a176adb201ab0f27003.tar.xz wireguard-openbsd-cc4a86a95d49ec84631a1a176adb201ab0f27003.zip |
Remove some very noisy debug code.
-rw-r--r-- | sys/arch/hppa64/hppa64/intr.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/sys/arch/hppa64/hppa64/intr.c b/sys/arch/hppa64/hppa64/intr.c index 64d0ff05d62..6e7d2789ba8 100644 --- a/sys/arch/hppa64/hppa64/intr.c +++ b/sys/arch/hppa64/hppa64/intr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.c,v 1.4 2011/04/07 13:13:01 jsing Exp $ */ +/* $OpenBSD: intr.c,v 1.5 2011/04/13 15:23:53 jsing Exp $ */ /* * Copyright (c) 2002-2004 Michael Shalayeff @@ -45,14 +45,6 @@ #include <machine/psl.h> #include <machine/reg.h> -#ifdef DDB -#include <machine/db_machdep.h> -#endif - -#ifdef INTRDEBUG -#include <ddb/db_output.h> -#endif - struct hppa_iv { char pri; char irq; @@ -294,13 +286,6 @@ cpu_intr(void *v) ci->ci_in_intr--; ci->ci_cpl = s; -#ifdef INTRDEBUG - if (uvmexp.intrs % 10000) - db_printf("."); - if (uvmexp.softs % 10000) - db_printf("+"); -#endif - mtctl(imask[ci->ci_cpl], CR_EIEM); ssm(PSL_I, mask); } |