Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Apr 2018 21:07:45 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r333036 - head/sys/i386/include
Message-ID:  <201804262107.w3QL7jkJ009988@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804262107.w3QL7jkJ009988>