Module Name: src
Committed By: bouyer
Date: Sat Mar 17 18:46:52 UTC 2012
Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.3
Log Message:
ticket 1736
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.5 -r1.1.2.6 src/doc/CHANGES-5.1.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.1.3
diff -u src/doc/CHANGES-5.1.3:1.1.2.5 src/doc/CHANGES-5.1.3:1.1.2.6
--- src/doc/CHANGES-5.1.3:1.1.2.5 Fri Mar 2 17:44:52 2012
+++ src/doc/CHANGES-5.1.3 Sat Mar 17 18:46:52 2012
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.3,v 1.1.2.5 2012/03/02 17:44:52 riz Exp $
+# $NetBSD: CHANGES-5.1.3,v 1.1.2.6 2012/03/17 18:46:52 bouyer Exp $
A complete list of changes from the NetBSD 5.1.2 release to the NetBSD 5.1.3
release:
@@ -48,3 +48,21 @@ share/zoneinfo/zone.tab patch
Update to tzdata2012b.
[apb, ticket #1734]
+doc/HACKS 1.123 via patch
+sys/arch/sparc64/conf/Makefile.sparc64 1.71 via patch
+sys/arch/sparc64/conf/files.sparc64 1.138 via patch
+sys/arch/sparc64/sparc64/locore.s 1.340 via patch
+
+ Fix the root cause of the hack "disable optimizations for uvm_bio.c
+ on 32 bit kernels".
+
+ gcc converts a division in the calculation of UBC_UMAP_ADDR macro
+ to multiplication (smul or combination of add/sll), and the
+ register of its result contains a garbage in upper 32 bits (the
+ upper 32 bits of smul/add/sll's result isn't zero cleared).
+
+ Then it passes to pseg_get{,_real} through pmap_extract without the
+ zero clear of upper 32 bits in the optimization case. So the
+ result of pseg_get and pmap_extact sometimes gets screwed up.
+ [nakayama, ticket #1736]
+