Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch No USER_LDT on Xen.
details: https://anonhg.NetBSD.org/src/rev/bf55d0af992e
branches: trunk
changeset: 453653:bf55d0af992e
user: maxv <maxv%NetBSD.org@localhost>
date: Wed Aug 21 12:16:07 2019 +0000
description:
No USER_LDT on Xen.
diffstat:
sys/arch/amd64/conf/XEN3_DOM0 | 6 ++----
sys/arch/amd64/conf/XEN3_DOMU | 6 ++----
sys/arch/amd64/conf/XEN3_PVHVM | 6 ++----
sys/arch/i386/conf/XEN3PAE_DOM0 | 4 +---
sys/arch/i386/conf/XEN3PAE_DOMU | 4 +---
sys/arch/i386/conf/XEN3PAE_PVHVM | 4 +---
6 files changed, 9 insertions(+), 21 deletions(-)
diffs (135 lines):
diff -r 0ddac64b42db -r bf55d0af992e sys/arch/amd64/conf/XEN3_DOM0
--- a/sys/arch/amd64/conf/XEN3_DOM0 Wed Aug 21 11:11:48 2019 +0000
+++ b/sys/arch/amd64/conf/XEN3_DOM0 Wed Aug 21 12:16:07 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3_DOM0,v 1.168 2019/08/09 08:01:06 rin Exp $
+# $NetBSD: XEN3_DOM0,v 1.169 2019/08/21 12:16:07 maxv Exp $
include "arch/amd64/conf/std.xen"
@@ -11,7 +11,7 @@
#options UVMHIST_PRINT
#options SYSCALL_DEBUG
-#ident "XEN3_DOM0-$Revision: 1.168 $"
+#ident "XEN3_DOM0-$Revision: 1.169 $"
maxusers 32 # estimated number of users
@@ -21,8 +21,6 @@
# boot messages with MPBIOS, acpi and ioapic can be quite large
options MSGBUFSIZE=24576
-#options USER_LDT # user-settable LDT; used by WINE
-
# CPU features
est0 at cpu0 # Intel Enhanced SpeedStep (non-ACPI)
powernow0 at cpu0 # AMD PowerNow! and Cool'n'Quiet (non-ACPI)
diff -r 0ddac64b42db -r bf55d0af992e sys/arch/amd64/conf/XEN3_DOMU
--- a/sys/arch/amd64/conf/XEN3_DOMU Wed Aug 21 11:11:48 2019 +0000
+++ b/sys/arch/amd64/conf/XEN3_DOMU Wed Aug 21 12:16:07 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3_DOMU,v 1.89 2019/05/06 02:24:37 sevan Exp $
+# $NetBSD: XEN3_DOMU,v 1.90 2019/08/21 12:16:07 maxv Exp $
include "arch/amd64/conf/std.xen"
@@ -11,7 +11,7 @@
#options UVMHIST_PRINT
#options SYSCALL_DEBUG
-#ident "XEN3_DOMU-$Revision: 1.89 $"
+#ident "XEN3_DOMU-$Revision: 1.90 $"
maxusers 32 # estimated number of users
@@ -19,8 +19,6 @@
options MAXPHYS=32768 #xbd doesn't handle 64k transfers
#options DOM0OPS
-#options USER_LDT # user-settable LDT; used by WINE
-
#options MTRR # memory-type range register syscall support
#options CONSDEVNAME="\"xencons\""
diff -r 0ddac64b42db -r bf55d0af992e sys/arch/amd64/conf/XEN3_PVHVM
--- a/sys/arch/amd64/conf/XEN3_PVHVM Wed Aug 21 11:11:48 2019 +0000
+++ b/sys/arch/amd64/conf/XEN3_PVHVM Wed Aug 21 12:16:07 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3_PVHVM,v 1.1 2019/02/14 08:18:25 cherry Exp $
+# $NetBSD: XEN3_PVHVM,v 1.2 2019/08/21 12:16:07 maxv Exp $
include "arch/amd64/conf/std.xen"
@@ -12,7 +12,7 @@
#options UVMHIST_PRINT
#options SYSCALL_DEBUG
-#ident "XEN3_PVHVM-$Revision: 1.1 $"
+#ident "XEN3_PVHVM-$Revision: 1.2 $"
maxusers 32 # estimated number of users
options MAXPHYS=32768 #xbd doesn't handle 64k transfers
@@ -20,8 +20,6 @@
# boot messages with MPBIOS, acpi and ioapic can be quite large
options MSGBUFSIZE=24576
-#options USER_LDT # user-settable LDT; used by WINE
-
#options MTRR # memory-type range register syscall support
#options CONSDEVNAME="\"xencons\""
diff -r 0ddac64b42db -r bf55d0af992e sys/arch/i386/conf/XEN3PAE_DOM0
--- a/sys/arch/i386/conf/XEN3PAE_DOM0 Wed Aug 21 11:11:48 2019 +0000
+++ b/sys/arch/i386/conf/XEN3PAE_DOM0 Wed Aug 21 12:16:07 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3PAE_DOM0,v 1.14 2019/08/09 08:01:06 rin Exp $
+# $NetBSD: XEN3PAE_DOM0,v 1.15 2019/08/21 12:16:07 maxv Exp $
#
# XEN3_0: Xen 3.0 domain0 kernel
@@ -30,8 +30,6 @@
makeoptions CPUFLAGS="-march=i686"
-#options USER_LDT # user-settable LDT; used by WINE
-
# CPU features
est0 at cpu0 # Intel Enhanced SpeedStep (non-ACPI)
powernow0 at cpu0 # AMD PowerNow! and Cool'n'Quiet (non-ACPI)
diff -r 0ddac64b42db -r bf55d0af992e sys/arch/i386/conf/XEN3PAE_DOMU
--- a/sys/arch/i386/conf/XEN3PAE_DOMU Wed Aug 21 11:11:48 2019 +0000
+++ b/sys/arch/i386/conf/XEN3PAE_DOMU Wed Aug 21 12:16:07 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3PAE_DOMU,v 1.6 2019/02/11 14:59:32 cherry Exp $
+# $NetBSD: XEN3PAE_DOMU,v 1.7 2019/08/21 12:16:07 maxv Exp $
include "arch/xen/conf/std.xen"
@@ -20,8 +20,6 @@
makeoptions CPUFLAGS="-march=i686"
-#options USER_LDT # user-settable LDT; used by WINE
-
#options MTRR # memory-type range register syscall support
#options CONSDEVNAME="\"xencons\""
diff -r 0ddac64b42db -r bf55d0af992e sys/arch/i386/conf/XEN3PAE_PVHVM
--- a/sys/arch/i386/conf/XEN3PAE_PVHVM Wed Aug 21 11:11:48 2019 +0000
+++ b/sys/arch/i386/conf/XEN3PAE_PVHVM Wed Aug 21 12:16:07 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3PAE_PVHVM,v 1.1 2019/02/14 08:18:25 cherry Exp $
+# $NetBSD: XEN3PAE_PVHVM,v 1.2 2019/08/21 12:16:07 maxv Exp $
include "arch/xen/conf/std.xen"
@@ -20,8 +20,6 @@
makeoptions CPUFLAGS="-march=i686"
-#options USER_LDT # user-settable LDT; used by WINE
-
#options MTRR # memory-type range register syscall support
#options CONSDEVNAME="\"xencons\""
Home |
Main Index |
Thread Index |
Old Index