Module Name: src
Committed By: martin
Date: Mon Aug 11 15:40:08 UTC 2014
Modified Files:
src/doc [netbsd-7]: CHANGES-7.0
Log Message:
Tickets 3 and 4
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 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.1 src/doc/CHANGES-7.0:1.1.2.2
--- src/doc/CHANGES-7.0:1.1.2.1 Mon Aug 11 09:21:47 2014
+++ src/doc/CHANGES-7.0 Mon Aug 11 15:40:08 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-7.0,v 1.1.2.1 2014/08/11 09:21:47 riz Exp $
+# $NetBSD: CHANGES-7.0,v 1.1.2.2 2014/08/11 15:40:08 martin Exp $
A complete list of changes from the initial NetBSD 7.0 branch on 11 Aug 2014
until the 7.0 release:
@@ -11,3 +11,20 @@ sys/sys/param.h patched by hand
Welcome to 7.0_BETA!
+sys/dev/usb/xhci.c 1.24
+
+ PR/49091: xhci: wrong wMaxPacketSize value
+
+ While this is correct according to the specification only fixed sizes
+ are allowed, i.e. 512 for SS, etc. Maybe these should be used?
+ [skrll, ticket #3]
+
+
+sys/kern/kern_rndpool.c 1.7
+sys/kern/kern_rndq.c 1.27
+
+ buf is not guaranteed to be aligned; don't *(uint32_t *) it.
+ done is not guaranteed to be aligned; don't *(uint32_t *) it.
+ Fixes PR kern/49098.
+ [riastradh, ticket #4]
+