Module Name: src
Committed By: snj
Date: Wed May 27 21:44:12 UTC 2009
Modified Files:
src/doc [netbsd-5]: CHANGES-5.1
Log Message:
Tickets 778, 779, and 781.
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.21 -r1.1.2.22 src/doc/CHANGES-5.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-5.1
diff -u src/doc/CHANGES-5.1:1.1.2.21 src/doc/CHANGES-5.1:1.1.2.22
--- src/doc/CHANGES-5.1:1.1.2.21 Tue May 26 19:20:50 2009
+++ src/doc/CHANGES-5.1 Wed May 27 21:44:12 2009
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1,v 1.1.2.21 2009/05/26 19:20:50 snj Exp $
+# $NetBSD: CHANGES-5.1,v 1.1.2.22 2009/05/27 21:44:12 snj Exp $
A complete list of changes from the NetBSD 5.0 release to the NetBSD 5.1
release:
@@ -627,3 +627,25 @@
Fixes PR 41302.
[martin, ticket #774]
+distrib/utils/sysinst/arch/mac68k/md.c 1.54
+
+ Fix build by explicitly narrowing dlsize to an unsigned 32-bit
+ quantity as supported by disklabel. Fixes fallout from ticket
+ 755.
+ [sborrill, ticket #778]
+
+sys/kern/sys_mqueue.c 1.18
+
+ - Slightly rework the way permissions are checked. Neither
+ mq_receive() nor mq_send() should fail due to permissions.
+ - Check for empty message queue name (POSIX does not allow this
+ for regular files, and it's weird), check for DTYPE_MQUEUE, fix
+ permission check in mq_unlink(), clean up.
+ [rmind, ticket #779]
+
+sys/kern/kern_physio.c 1.91
+
+ Remove a race where physio_done() may use memory already
+ freed. Fixes PR kern/39536.
+ [hannken, ticket #781]
+