Module Name: src
Committed By: snj
Date: Thu Apr 22 20:12:37 UTC 2010
Modified Files:
src/doc [netbsd-5-0]: CHANGES-5.0.3
Log Message:
Tickets 1376 and 1377.
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.10 -r1.1.2.11 src/doc/CHANGES-5.0.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/doc/CHANGES-5.0.3
diff -u src/doc/CHANGES-5.0.3:1.1.2.10 src/doc/CHANGES-5.0.3:1.1.2.11
--- src/doc/CHANGES-5.0.3:1.1.2.10 Mon Apr 12 21:55:48 2010
+++ src/doc/CHANGES-5.0.3 Thu Apr 22 20:12:37 2010
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.0.3,v 1.1.2.10 2010/04/12 21:55:48 snj Exp $
+# $NetBSD: CHANGES-5.0.3,v 1.1.2.11 2010/04/22 20:12:37 snj Exp $
A complete list of changes from the NetBSD 5.0.2 release to the NetBSD 5.0.3
release:
@@ -193,3 +193,19 @@
Fix CVE-2009-3767.
[lukem, ticket #1374]
+sys/arch/amd64/amd64/locore.S 1.56
+
+ When kernel remaps to high memory in amd64 locore, the GDT used
+ before becomes invalid. As such, split it in two parts, one for
+ use when system boots in low memory, and one for use when it jumps
+ to high memory.
+ [jym, ticket #1376]
+
+sys/arch/x86/x86/identcpu.c 1.19
+
+ Fix a test semantic in cpu_probe(): check that the CPU currently
+ probed is the first one booting by comparing its struct cpu_info
+ address with cpu_info_primary, rather than supposing that
+ cpu_feature variables are set to 0.
+ [jym, ticket #1377]
+