svn commit: r332427 - stable/11/sys/amd64/amd64
Konstantin Belousov
kib at FreeBSD.org
Thu Apr 12 13:39:02 UTC 2018
Author: kib
Date: Thu Apr 12 13:39:01 2018
New Revision: 332427
URL: https://svnweb.freebsd.org/changeset/base/332427
Log:
MFC r332060:
Make the INTO instruction operational in 32bit mode.
Modified:
stable/11/sys/amd64/amd64/machdep.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/amd64/amd64/machdep.c
==============================================================================
--- stable/11/sys/amd64/amd64/machdep.c Thu Apr 12 10:37:26 2018 (r332426)
+++ stable/11/sys/amd64/amd64/machdep.c Thu Apr 12 13:39:01 2018 (r332427)
@@ -1644,7 +1644,7 @@ hammer_time(u_int64_t modulep, u_int64_t physfree)
setidt(IDT_BP, pti ? &IDTVEC(bpt_pti) : &IDTVEC(bpt), SDT_SYSIGT,
SEL_UPL, 0);
setidt(IDT_OF, pti ? &IDTVEC(ofl_pti) : &IDTVEC(ofl), SDT_SYSIGT,
- SEL_KPL, 0);
+ SEL_UPL, 0);
setidt(IDT_BR, pti ? &IDTVEC(bnd_pti) : &IDTVEC(bnd), SDT_SYSIGT,
SEL_KPL, 0);
setidt(IDT_UD, pti ? &IDTVEC(ill_pti) : &IDTVEC(ill), SDT_SYSIGT,
More information about the svn-src-stable
mailing list