Module Name: src
Committed By: bouyer
Date: Tue Aug 31 10:56:03 UTC 2010
Modified Files:
src/doc [netbsd-5]: CHANGES-5.1
Log Message:
Tickets 1439 & 1444
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.238 -r1.1.2.239 src/doc/CHANGES-5.1
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.1
diff -u src/doc/CHANGES-5.1:1.1.2.238 src/doc/CHANGES-5.1:1.1.2.239
--- src/doc/CHANGES-5.1:1.1.2.238 Wed Aug 25 04:22:21 2010
+++ src/doc/CHANGES-5.1 Tue Aug 31 10:56:03 2010
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1,v 1.1.2.238 2010/08/25 04:22:21 snj Exp $
+# $NetBSD: CHANGES-5.1,v 1.1.2.239 2010/08/31 10:56:03 bouyer Exp $
A complete list of changes from the NetBSD 5.0 release to the NetBSD 5.1
release:
@@ -17425,3 +17425,21 @@
Correct incomplete size checks for the coda ioctls.
[christos, ticket #1431]
+sys/arch/x86/x86/intel_busclock.c 1.11
+
+ Some core i7 CPUs report model 0c. In this case, check for the extended
+ model value.
+ Required to avoid faulting on rdmsr(MSR_FSB_FREQ) early during boot.
+ [jym, ticket #1439]
+
+sys/kern/exec_subr.c 1.65
+sys/kern/kern_pax.c 1.24
+
+ Fix issues with stack allocation and pax aslr:
+ - since the size is unsigned, don't check just that it is > 0,
+ but limit it to the MAXSSIZ
+ - if the stack size is reduced because of aslr, make sure we reduce
+ the actual allocation by the same size so that the size does not
+ wrap around.
+ [christos, ticket #1444]
+