diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2015-06-29 03:02:39 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2015-06-29 03:02:39 +0000 |
commit | 07cf13c26028613edda80f54efd12d444fe12351 (patch) | |
tree | d0ce1704c58217e01ecbab4ee582113b22cfcbbf | |
parent | 4bc91d06f60fc58095366a8b49dbeeb8c34104bb (diff) |
Fix trap setup for double faults; error pointed out by Wei Liu a few months
ago and I forgot to commit this until now.
From Wei Liu <wei.liu2 at citrix.com>
ok mikeb@, guenther@, ratchov@
-rw-r--r-- | sys/arch/amd64/amd64/vector.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/vector.S b/sys/arch/amd64/amd64/vector.S index d681958aaa9..76b58ced70a 100644 --- a/sys/arch/amd64/amd64/vector.S +++ b/sys/arch/amd64/amd64/vector.S @@ -1,4 +1,4 @@ -/* $OpenBSD: vector.S,v 1.39 2015/06/28 01:16:29 guenther Exp $ */ +/* $OpenBSD: vector.S,v 1.40 2015/06/29 03:02:38 mlarkin Exp $ */ /* $NetBSD: vector.S,v 1.5 2004/06/28 09:13:11 fvdl Exp $ */ /* @@ -129,7 +129,7 @@ IDTVEC(trap07) call _C_LABEL(fpudna) INTRFASTEXIT IDTVEC(trap08) - ZTRAP(T_DOUBLEFLT) + TRAP(T_DOUBLEFLT) IDTVEC(trap09) ZTRAP(T_FPOPFLT) IDTVEC(trap0a) |