diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-07-16 05:10:15 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-07-16 05:10:15 +0000 |
commit | 6c55f05c348ad63d4f9cf6541b718b1802b42b4a (patch) | |
tree | 913e26036cbda3b9f1b7f5995bde34f5bfc44f7c /sys/arch/amd64/include | |
parent | 1f2303bb4ce44154fd7b3a05289808aea46b037b (diff) |
Move grab/release of the kernel_lock for softintrs from the ASM stubs to
softintr_dispatch(). Delete traces of long superseded stats code.
ok beck@ mpi@ uebayasi@
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r-- | sys/arch/amd64/include/intr.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/amd64/include/intr.h b/sys/arch/amd64/include/intr.h index 869d9fe467a..54086d71806 100644 --- a/sys/arch/amd64/include/intr.h +++ b/sys/arch/amd64/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.26 2014/03/29 18:09:28 guenther Exp $ */ +/* $OpenBSD: intr.h,v 1.27 2015/07/16 05:10:14 guenther Exp $ */ /* $NetBSD: intr.h,v 1.2 2003/05/04 22:01:56 fvdl Exp $ */ /*- @@ -215,8 +215,6 @@ int x86_send_ipi(struct cpu_info *, int); int x86_fast_ipi(struct cpu_info *, int); void x86_broadcast_ipi(int); void x86_ipi_handler(void); -void x86_softintlock(void); -void x86_softintunlock(void); void x86_setperf_ipi(struct cpu_info *); extern void (*ipifunc[X86_NIPI])(struct cpu_info *); |