Sun Nov 8 00:31:16 2015 UTC ()
ticket 1011.


(riz)
diff -r1.1.2.7 -r1.1.2.8 src/doc/CHANGES-7.0.1

cvs diff -r1.1.2.7 -r1.1.2.8 src/doc/Attic/CHANGES-7.0.1 (expand / switch to unified diff)

--- src/doc/Attic/CHANGES-7.0.1 2015/11/08 00:16:39 1.1.2.7
+++ src/doc/Attic/CHANGES-7.0.1 2015/11/08 00:31:15 1.1.2.8
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: CHANGES-7.0.1,v 1.1.2.7 2015/11/08 00:16:39 riz Exp $ 1# $NetBSD: CHANGES-7.0.1,v 1.1.2.8 2015/11/08 00:31:15 riz Exp $
2 2
3A complete list of changes from the NetBSD 7.0 release to the NetBSD 7.0.1 3A complete list of changes from the NetBSD 7.0 release to the NetBSD 7.0.1
4release: 4release:
5 5
6gnu/usr.bin/groff/tmac/mdoc.local patched by hand 6gnu/usr.bin/groff/tmac/mdoc.local patched by hand
7sys/sys/param.h patched by hand 7sys/sys/param.h patched by hand
8 8
9 Welcome to 7.0.0_PATCH. 9 Welcome to 7.0.0_PATCH.
10 [snj] 10 [snj]
11 11
12distrib/amd64/ramdisks/common/Makefile.ramdisk 1.11 12distrib/amd64/ramdisks/common/Makefile.ramdisk 1.11
13distrib/amd64/ramdisks/common/list.ramdisk 1.20 13distrib/amd64/ramdisks/common/list.ramdisk 1.20
14distrib/i386/ramdisks/common/Makefile.ramdisk 1.12 14distrib/i386/ramdisks/common/Makefile.ramdisk 1.12
@@ -93,13 +93,25 @@ sys/kern/kern_exit.c 1.248 @@ -93,13 +93,25 @@ sys/kern/kern_exit.c 1.248
93 [pgoyette, ticket #999] 93 [pgoyette, ticket #999]
94 94
95sys/arch/arm/allwinner/awin_mmc.c 1.22 95sys/arch/arm/allwinner/awin_mmc.c 1.22
96 96
97 Avoid a divide by 0 when unplugging a sd card. 97 Avoid a divide by 0 when unplugging a sd card.
98 [bouyer, ticket #1006] 98 [bouyer, ticket #1006]
99 99
100sys/arch/x86/x86/cpu.c 1.116 100sys/arch/x86/x86/cpu.c 1.116
101 101
102 Don't disable/re-enable interrupts if they are already disabled. 102 Don't disable/re-enable interrupts if they are already disabled.
103 Fixes i386 PAE kernels. PR#48196. 103 Fixes i386 PAE kernels. PR#48196.
104 [nat, ticket #984] 104 [nat, ticket #984]
105 105
 106sys/arch/x86/x86/bus_dma.c 1.72-1.74
 107
 108 - If we succeeded allocating a buffer that did not need bouncing
 109 before, but the buffer in the previous mapping did, clear the
 110 bounce bit. Fixes the ld_virtio.c bug with machines 8GB and
 111 dd if=/dev/zero of=crash bs=1g count=4.
 112 - Allocate with M_ZERO instead of doing memset
 113 - The panic string can take a format, use it.
 114 - When checking for the bounce buffer boundary,
 115 check addr + len < limit, not addr < limit.
 116 [christos, ticket #1011]
 117