Module Name: src
Committed By: maxv
Date: Sat Aug 12 13:16:14 UTC 2017
Modified Files:
src/sys/arch/i386/i386: genassym.cf machdep.c
Log Message:
Remove references to PSL_VM (implicitly vm86).
To generate a diff of this commit:
cvs rdiff -u -r1.102 -r1.103 src/sys/arch/i386/i386/genassym.cf
cvs rdiff -u -r1.789 -r1.790 src/sys/arch/i386/i386/machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/i386/i386/genassym.cf
diff -u src/sys/arch/i386/i386/genassym.cf:1.102 src/sys/arch/i386/i386/genassym.cf:1.103
--- src/sys/arch/i386/i386/genassym.cf:1.102 Tue Aug 8 08:04:05 2017
+++ src/sys/arch/i386/i386/genassym.cf Sat Aug 12 13:16:14 2017
@@ -1,4 +1,4 @@
-# $NetBSD: genassym.cf,v 1.102 2017/08/08 08:04:05 maxv Exp $
+# $NetBSD: genassym.cf,v 1.103 2017/08/12 13:16:14 maxv Exp $
#
# Copyright (c) 1998, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -355,7 +355,6 @@ define IREENT_MAGIC IREENT_MAGIC
define PSL_AC PSL_AC
define PSL_MBO PSL_MBO
define PSL_ID PSL_ID
-define PSL_VM PSL_VM
define PSL_I PSL_I
define MTX_IPL offsetof(struct kmutex, u.s.mtxs_ipl)
Index: src/sys/arch/i386/i386/machdep.c
diff -u src/sys/arch/i386/i386/machdep.c:1.789 src/sys/arch/i386/i386/machdep.c:1.790
--- src/sys/arch/i386/i386/machdep.c:1.789 Sat Aug 12 07:07:53 2017
+++ src/sys/arch/i386/i386/machdep.c Sat Aug 12 13:16:14 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.789 2017/08/12 07:07:53 maxv Exp $ */
+/* $NetBSD: machdep.c,v 1.790 2017/08/12 13:16:14 maxv Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2000, 2004, 2006, 2008, 2009
@@ -67,7 +67,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.789 2017/08/12 07:07:53 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.790 2017/08/12 13:16:14 maxv Exp $");
#include "opt_beep.h"
#include "opt_compat_freebsd.h"
@@ -647,8 +647,6 @@ sendsig_siginfo(const ksiginfo_t *ksi, c
? _UC_SETSTACK : _UC_CLRSTACK;
memset(&frame.sf_uc.uc_stack, 0, sizeof(frame.sf_uc.uc_stack));
- if (tf->tf_eflags & PSL_VM)
- (*p->p_emul->e_syscall_intern)(p);
sendsig_reset(l, sig);
mutex_exit(p->p_lock);