Module Name: src
Committed By: bouyer
Date: Sat Sep 7 16:44:29 UTC 2013
Modified Files:
src/doc [netbsd-6-0]: CHANGES-6.0.3
Log Message:
tickets 930 931 933
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.17 -r1.1.2.18 src/doc/CHANGES-6.0.3
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-6.0.3
diff -u src/doc/CHANGES-6.0.3:1.1.2.17 src/doc/CHANGES-6.0.3:1.1.2.18
--- src/doc/CHANGES-6.0.3:1.1.2.17 Thu Aug 8 21:56:59 2013
+++ src/doc/CHANGES-6.0.3 Sat Sep 7 16:44:29 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.0.3,v 1.1.2.17 2013/08/08 21:56:59 snj Exp $
+# $NetBSD: CHANGES-6.0.3,v 1.1.2.18 2013/09/07 16:44:29 bouyer Exp $
A complete list of changes from the NetBSD 6.0.2 release to the NetBSD 6.0.3
release:
@@ -175,3 +175,26 @@ sys/netinet6/nd6_rtr.c 1.86
PR/47576.
[msaitoh, ticket #926]
+sys/fs/udf/udf_allocation.c 1.34
+
+ Fix 32 bit issue in main file read-in function. On both 32 bit and
+ 64 bit hosts a missing cast would result in `garbage' after the
+ 4Gbyte limit.
+ [reinoud, ticket #930]
+
+sys/dev/pci/virtio.c 1.4
+
+ Make sure to check if the driver has a valid intr handler in
+ virtio_detach().
+ Fixes a panic during shutdown on KVM under ubuntu 13.04 with virtio,
+ as reported in PR kern/48105 by Richard Hansen.
+ [tsutsui, ticket #931]
+
+sys/nfs/nfs_bio.c 1.189
+
+ Change nfs_vinvalbuf() to keep errors from vinvalbuf() for fsync() or
+ close().
+ Fix for PR kern/47980 (NFS over-quota not detected if utimes() called
+ before fsync()/close())
+ [hannken, ticket #933]
+