Module Name: src
Committed By: martin
Date: Mon Aug 18 12:42:27 UTC 2014
Modified Files:
src/doc [netbsd-7]: CHANGES-7.0
Log Message:
Ticket 38
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.13 -r1.1.2.14 src/doc/CHANGES-7.0
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
diff -u src/doc/CHANGES-7.0:1.1.2.13 src/doc/CHANGES-7.0:1.1.2.14
--- src/doc/CHANGES-7.0:1.1.2.13 Mon Aug 18 07:55:26 2014
+++ src/doc/CHANGES-7.0 Mon Aug 18 12:42:27 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-7.0,v 1.1.2.13 2014/08/18 07:55:26 martin Exp $
+# $NetBSD: CHANGES-7.0,v 1.1.2.14 2014/08/18 12:42:27 martin Exp $
A complete list of changes from the initial NetBSD 7.0 branch on 11 Aug 2014
until the 7.0 release:
@@ -260,3 +260,17 @@ libexec/ld.elf_so/arch/vax/rtld_start.S
[matt, ticket #37]
+sbin/ccdconfig/ccdconfig.c 1.54
+sbin/ccdconfig/ccdconfig.c 1.55
+sys/dev/ccd.c 1.152
+sys/dev/ccdvar.h 1.34
+
+ Switch size_t to uint64_t in appropriate places to ensure that
+ ccd(4) works with component and total sizes of > 2TB.
+ Add COMPAT_60 code for platforms where this alters userland-accessible
+ structures.
+ Make kernel print device information when a ccd configured.
+ Fix some typos in comments.
+ Don't print ccd_size with %zu; it no longer has type size_t.
+ Instead, cast to uintmax_t and print with %ju.
+ [sborrill, ticket #38]