Module Name: src
Committed By: riz
Date: Sun Nov 8 00:31:16 UTC 2015
Modified Files:
src/doc [netbsd-7-0]: CHANGES-7.0.1
Log Message:
ticket 1011.
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.7 -r1.1.2.8 src/doc/CHANGES-7.0.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-7.0.1
diff -u src/doc/CHANGES-7.0.1:1.1.2.7 src/doc/CHANGES-7.0.1:1.1.2.8
--- src/doc/CHANGES-7.0.1:1.1.2.7 Sun Nov 8 00:16:39 2015
+++ src/doc/CHANGES-7.0.1 Sun Nov 8 00:31:15 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-7.0.1,v 1.1.2.7 2015/11/08 00:16:39 riz Exp $
+# $NetBSD: CHANGES-7.0.1,v 1.1.2.8 2015/11/08 00:31:15 riz Exp $
A complete list of changes from the NetBSD 7.0 release to the NetBSD 7.0.1
release:
@@ -103,3 +103,15 @@ sys/arch/x86/x86/cpu.c 1.116
Fixes i386 PAE kernels. PR#48196.
[nat, ticket #984]
+sys/arch/x86/x86/bus_dma.c 1.72-1.74
+
+ - If we succeeded allocating a buffer that did not need bouncing
+ before, but the buffer in the previous mapping did, clear the
+ bounce bit. Fixes the ld_virtio.c bug with machines 8GB and
+ dd if=/dev/zero of=crash bs=1g count=4.
+ - Allocate with M_ZERO instead of doing memset
+ - The panic string can take a format, use it.
+ - When checking for the bounce buffer boundary,
+ check addr + len < limit, not addr < limit.
+ [christos, ticket #1011]
+