Module Name: src
Committed By: riz
Date: Sun Mar 31 22:24:11 UTC 2013
Modified Files:
src/doc [netbsd-6]: CHANGES-6.1
src/sys/sys [netbsd-6]: param.h
Log Message:
Welcome to 6.1_RC3!
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.116 -r1.1.2.117 src/doc/CHANGES-6.1
cvs rdiff -u -r1.408.2.9 -r1.408.2.10 src/sys/sys/param.h
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.1
diff -u src/doc/CHANGES-6.1:1.1.2.116 src/doc/CHANGES-6.1:1.1.2.117
--- src/doc/CHANGES-6.1:1.1.2.116 Sun Mar 31 17:47:10 2013
+++ src/doc/CHANGES-6.1 Sun Mar 31 22:24:11 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.1,v 1.1.2.116 2013/03/31 17:47:10 riz Exp $
+# $NetBSD: CHANGES-6.1,v 1.1.2.117 2013/03/31 22:24:11 riz Exp $
A complete list of changes from the 6.0 release until the 6.1 release:
@@ -8772,3 +8772,52 @@ usr.sbin/npf/npfctl/npfctl.c 1.32
Minor npfctl(5) fixes in parsing and error handling.
[rmind, ticket #852]
+sys/netinet6/udp6_output.c 1.44
+
+ Fix sendto(2) issue with IPv6 UDP datagrams. PR#47408.
+ [christos, ticket #853]
+
+lib/libc/rpc/clnt_vc.c 1.19
+
+ Wrong memcpy() can cause memory corruption. PR#13082.
+ [christos, ticket #854]
+
+sys/arch/x86/acpi/acpi_machdep.c 1.5-1.6
+sys/arch/x86/x86/mpacpi.c 1.97
+
+ Address ACPI issues on some AMD systems, that were introduced
+ post-6.0. PR#47016, PR#47648.
+ [chs, ticket #855]
+
+sys/arch/x86/x86/intr.c 1.75
+
+ Only use db_printf() if we're actually called from DDB.
+ This prevents the boot-time one from pausing the boot process.
+ [chs, ticket #856]
+
+sys/dev/mscp/mscp_subr.c 1.45
+
+ Prevent a crash when accessing any disk devices on the VAX mscp bus.
+ [martin, ticket #857]
+
+usr.bin/cap_mkdb/cap_mkdb.c 1.28-1.29
+
+ Make cap_mkdb work when a db file already existed, rather than
+ repeat the old values. Fixes bin/32591.
+ [gdt, ticket #858]
+
+sys/netinet/ip_icmp.c 1.130
+
+ Add missing codes to ICMP handling. PR#47693.
+ [fair, ticket #860]
+
+share/terminfo/terminfo 1.6
+
+ Fix initialization for vt220. PR#47674.
+ [uwe, ticket #861]
+
+sys/sys/param.h patched by hand
+
+ Welcome to 6.1_RC3!
+ [riz]
+
Index: src/sys/sys/param.h
diff -u src/sys/sys/param.h:1.408.2.9 src/sys/sys/param.h:1.408.2.10
--- src/sys/sys/param.h:1.408.2.9 Fri Mar 15 23:26:27 2013
+++ src/sys/sys/param.h Sun Mar 31 22:24:10 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.408.2.9 2013/03/15 23:26:27 riz Exp $ */
+/* $NetBSD: param.h,v 1.408.2.10 2013/03/31 22:24:10 riz Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -63,7 +63,7 @@
* 2.99.9 (299000900)
*/
-#define __NetBSD_Version__ 601000000 /* NetBSD 6.1_RC2 */
+#define __NetBSD_Version__ 601000000 /* NetBSD 6.1_RC3 */
#define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
(m) * 1000000) + (p) * 100) <= __NetBSD_Version__)