Wed May 27 21:44:12 2009 UTC ()
Tickets 778, 779, and 781.


(snj)
diff -r1.1.2.21 -r1.1.2.22 src/doc/CHANGES-5.1

cvs diff -r1.1.2.21 -r1.1.2.22 src/doc/Attic/CHANGES-5.1 (expand / switch to context diff)
--- src/doc/Attic/CHANGES-5.1 2009/05/26 19:20:50 1.1.2.21
+++ src/doc/Attic/CHANGES-5.1 2009/05/27 21:44:12 1.1.2.22
@@ -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:
@@ -626,4 +626,26 @@
 	directly uses the ucontext to return to the fork call.
 	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]