svn commit: r333036 - head/sys/i386/include

Konstantin Belousov kib at FreeBSD.org
Thu Apr 26 21:07:46 UTC 2018


Author: kib
Date: Thu Apr 26 21:07:45 2018
New Revision: 333036
URL: https://svnweb.freebsd.org/changeset/base/333036

Log:
  Fix move of the frame to the normal stack for interrupts occuring from
  the vm86 mode.
  
  Submitted by:	jhb

Modified:
  head/sys/i386/include/asmacros.h

Modified: head/sys/i386/include/asmacros.h
==============================================================================
--- head/sys/i386/include/asmacros.h	Thu Apr 26 19:23:37 2018	(r333035)
+++ head/sys/i386/include/asmacros.h	Thu Apr 26 21:07:45 2018	(r333036)
@@ -208,7 +208,7 @@
 
 	.macro	KENTER
 	testl	$PSL_VM, TF_EFLAGS(%esp)
-	jnz	2f
+	jnz	1f
 	testb	$SEL_RPL_MASK, TF_CS(%esp)
 	jz	2f
 1:	MOVE_STACKS


More information about the svn-src-all mailing list