diff options
author | 2015-06-29 03:02:38 +0000 | |
---|---|---|
committer | 2015-06-29 03:02:38 +0000 | |
commit | 222198480d4f6e989d38e837c444b09cc05ba94f (patch) | |
tree | 41d1499b7667baada3abf10bc222ba04b751340b | |
parent | Remove some unused #defines (diff) | |
download | wireguard-openbsd-222198480d4f6e989d38e837c444b09cc05ba94f.tar.xz wireguard-openbsd-222198480d4f6e989d38e837c444b09cc05ba94f.zip |
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) |