diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2023-04-15 01:42:21 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2023-04-15 01:42:21 +0000 |
commit | 92cfb405ed2b12d02417cf2ee4ea994764334e53 (patch) | |
tree | 0d7a4a48e387fcc2d6294958237eb4d24b1ca965 /sys/arch/amd64 | |
parent | 3e3f8c07a1b5c26df91b92efcf28b4b98efcdef9 (diff) |
change trap16 from IDTVEC_NOALIGN to IDTVEC as it is now the first
in the reserved block
ok deraadt@
Diffstat (limited to 'sys/arch/amd64')
-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 c2f11f093e3..c246b67acef 100644 --- a/sys/arch/amd64/amd64/vector.S +++ b/sys/arch/amd64/amd64/vector.S @@ -1,4 +1,4 @@ -/* $OpenBSD: vector.S,v 1.89 2023/04/15 01:22:50 jsg Exp $ */ +/* $OpenBSD: vector.S,v 1.90 2023/04/15 01:42:20 jsg Exp $ */ /* $NetBSD: vector.S,v 1.5 2004/06/28 09:13:11 fvdl Exp $ */ /* @@ -362,7 +362,7 @@ IDTVEC(trap14) ZTRAP(T_VE) IDTVEC(trap15) ZTRAP(T_CP) -IDTVEC_NOALIGN(trap16) +IDTVEC(trap16) IDTVEC_NOALIGN(trap17) IDTVEC_NOALIGN(trap18) IDTVEC_NOALIGN(trap19) |