CVS commit: src/sys/arch/evbarm/conf

2013-09-17 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Tue Sep 17 07:13:13 UTC 2013

Modified Files:
src/sys/arch/evbarm/conf: std.rpi

Log Message:
Add MODULAR


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/evbarm/conf/std.rpi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/evbarm/conf/std.rpi
diff -u src/sys/arch/evbarm/conf/std.rpi:1.9 src/sys/arch/evbarm/conf/std.rpi:1.10
--- src/sys/arch/evbarm/conf/std.rpi:1.9	Tue Aug  6 00:28:52 2013
+++ src/sys/arch/evbarm/conf/std.rpi	Tue Sep 17 07:13:13 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: std.rpi,v 1.9 2013/08/06 00:28:52 matt Exp $
+#	$NetBSD: std.rpi,v 1.10 2013/09/17 07:13:13 skrll Exp $
 #
 # standard NetBSD/evbarm for Raspberry Pi options
 
@@ -8,6 +8,7 @@ include 	arch/evbarm/conf/std.evbarm
 # Pull in Raspberry Pi config definitions.
 include		arch/evbarm/conf/files.rpi
 
+options 	MODULAR
 options 	__HAVE_CPU_COUNTER
 options 	__HAVE_FAST_SOFTINTS		# should be in types.h
 options 	__HAVE_CPU_UAREA_ALLOC_IDLELWP



CVS commit: [netbsd-6-1] src/external/bsd/pkg_install/dist/lib

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Sep 17 19:53:59 UTC 2013

Modified Files:
src/external/bsd/pkg_install/dist/lib [netbsd-6-1]: pkg_signature.c

Log Message:
Pull up following revision(s) (requested by khorben in ticket #943):
external/bsd/pkg_install/dist/lib/pkg_signature.c: revision 1.2
Fixed installation of signed packages. Some variables part of struct
signature_archive were not initialized properly, therefore randomly
failing in the verify_signature_read_cb() callback.
Partly closes PR pkg/48194; pkgsrc needs to be updated as well.
please commit agc@
XXX pull-up to netbsd-6


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.7 -r1.1.1.7.20.1 \
src/external/bsd/pkg_install/dist/lib/pkg_signature.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/pkg_install/dist/lib/pkg_signature.c
diff -u src/external/bsd/pkg_install/dist/lib/pkg_signature.c:1.1.1.7 src/external/bsd/pkg_install/dist/lib/pkg_signature.c:1.1.1.7.20.1
--- src/external/bsd/pkg_install/dist/lib/pkg_signature.c:1.1.1.7	Sat Feb 20 04:41:58 2010
+++ src/external/bsd/pkg_install/dist/lib/pkg_signature.c	Tue Sep 17 19:53:59 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: pkg_signature.c,v 1.1.1.7 2010/02/20 04:41:58 joerg Exp $	*/
+/*	$NetBSD: pkg_signature.c,v 1.1.1.7.20.1 2013/09/17 19:53:59 msaitoh Exp $	*/
 
 #if HAVE_CONFIG_H
 #include config.h
@@ -7,7 +7,7 @@
 #if HAVE_SYS_CDEFS_H
 #include sys/cdefs.h
 #endif
-__RCSID($NetBSD: pkg_signature.c,v 1.1.1.7 2010/02/20 04:41:58 joerg Exp $);
+__RCSID($NetBSD: pkg_signature.c,v 1.1.1.7.20.1 2013/09/17 19:53:59 msaitoh Exp $);
 
 /*-
  * Copyright (c) 2008 Joerg Sonnenberger jo...@netbsd.org.
@@ -325,10 +325,7 @@ pkg_verify_signature(const char *archive
 
 	*pkgname = NULL;
 
-	state = xmalloc(sizeof(*state));
-	state-sign_blocks = NULL;
-	state-sign_buf = NULL;
-	state-archive = NULL;
+	state = xcalloc(sizeof(*state), 1);
 
 	r = read_file_from_archive(archive_name, *archive, entry, HASH_FNAME,
 	hash_file, hash_len);



CVS commit: [netbsd-6] src/doc

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Sep 17 19:39:38 UTC 2013

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket 943.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.37 -r1.1.2.38 src/doc/CHANGES-6.2

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.2
diff -u src/doc/CHANGES-6.2:1.1.2.37 src/doc/CHANGES-6.2:1.1.2.38
--- src/doc/CHANGES-6.2:1.1.2.37	Sat Sep 14 13:43:52 2013
+++ src/doc/CHANGES-6.2	Tue Sep 17 19:39:38 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.2,v 1.1.2.37 2013/09/14 13:43:52 bouyer Exp $
+# $NetBSD: CHANGES-6.2,v 1.1.2.38 2013/09/17 19:39:38 msaitoh Exp $
 
 A complete list of changes from the 6.1 release until the 6.2 release:
 
@@ -702,3 +702,10 @@ lib/libc/stdlib/_env.c1.8
 	original environment like Emacs 24.
 	[tron, ticket #940]
 
+external/bsd/pkg_install/dist/lib/pkg_signature.c 1.2
+
+	Fixed installation of signed packages. Some variables part of struct
+	signature_archive were not initialized properly, therefore randomly
+	failing in the verify_signature_read_cb() callback.
+	Partly closes PR pkg/48194; pkgsrc needs to be updated as well.
+	[khorben, ticket #943]



CVS commit: src/usr.bin/nl

2013-09-17 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Tue Sep 17 20:00:50 UTC 2013

Modified Files:
src/usr.bin/nl: nl.c

Log Message:
If file argument is '-', read from stdin.
From Jérémie Courrèges-Anglas j...@wxcvbn.org.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/usr.bin/nl/nl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/nl/nl.c
diff -u src/usr.bin/nl/nl.c:1.11 src/usr.bin/nl/nl.c:1.12
--- src/usr.bin/nl/nl.c:1.11	Tue Aug 16 12:00:46 2011
+++ src/usr.bin/nl/nl.c	Tue Sep 17 20:00:50 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: nl.c,v 1.11 2011/08/16 12:00:46 christos Exp $	*/
+/*	$NetBSD: nl.c,v 1.12 2013/09/17 20:00:50 wiz Exp $	*/
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
 #ifndef lint
 __COPYRIGHT(@(#) Copyright (c) 1999\
  The NetBSD Foundation, Inc.  All rights reserved.);
-__RCSID($NetBSD: nl.c,v 1.11 2011/08/16 12:00:46 christos Exp $);
+__RCSID($NetBSD: nl.c,v 1.12 2013/09/17 20:00:50 wiz Exp $);
 #endif
 
 #include errno.h
@@ -240,7 +240,8 @@ main(int argc, char *argv[])
 	case 0:
 		break;
 	case 1:
-		if (freopen(argv[0], r, stdin) == NULL)
+		if (strcmp(argv[0], -) != 0 
+		freopen(argv[0], r, stdin) == NULL)
 			err(EXIT_FAILURE, Cannot open `%s', argv[0]);
 		break;
 	default:



CVS commit: [netbsd-6-0] src/doc

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Sep 17 19:57:27 UTC 2013

Modified Files:
src/doc [netbsd-6-0]: CHANGES-6.0.3

Log Message:
Ticket 943.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.20 -r1.1.2.21 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.20 src/doc/CHANGES-6.0.3:1.1.2.21
--- src/doc/CHANGES-6.0.3:1.1.2.20	Sat Sep 14 13:44:48 2013
+++ src/doc/CHANGES-6.0.3	Tue Sep 17 19:57:27 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.0.3,v 1.1.2.20 2013/09/14 13:44:48 bouyer Exp $
+# $NetBSD: CHANGES-6.0.3,v 1.1.2.21 2013/09/17 19:57:27 msaitoh Exp $
 
 A complete list of changes from the NetBSD 6.0.2 release to the NetBSD 6.0.3
 release:
@@ -211,3 +211,10 @@ lib/libc/stdlib/_env.c1.8
 	original environment like Emacs 24.
 	[tron, ticket #940]
 
+external/bsd/pkg_install/dist/lib/pkg_signature.c 1.2
+
+	Fixed installation of signed packages. Some variables part of struct
+	signature_archive were not initialized properly, therefore randomly
+	failing in the verify_signature_read_cb() callback.
+	Partly closes PR pkg/48194.
+	[khorben, ticket #943]



CVS commit: [netbsd-6-0] src/external/bsd/pkg_install/dist/lib

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Sep 17 19:56:50 UTC 2013

Modified Files:
src/external/bsd/pkg_install/dist/lib [netbsd-6-0]: pkg_signature.c

Log Message:
Pull up following revision(s) (requested by khorben in ticket #943):
external/bsd/pkg_install/dist/lib/pkg_signature.c: revision 1.2
Fixed installation of signed packages. Some variables part of struct
signature_archive were not initialized properly, therefore randomly
failing in the verify_signature_read_cb() callback.
Partly closes PR pkg/48194; pkgsrc needs to be updated as well.
please commit agc@
XXX pull-up to netbsd-6


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.7 -r1.1.1.7.14.1 \
src/external/bsd/pkg_install/dist/lib/pkg_signature.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/pkg_install/dist/lib/pkg_signature.c
diff -u src/external/bsd/pkg_install/dist/lib/pkg_signature.c:1.1.1.7 src/external/bsd/pkg_install/dist/lib/pkg_signature.c:1.1.1.7.14.1
--- src/external/bsd/pkg_install/dist/lib/pkg_signature.c:1.1.1.7	Sat Feb 20 04:41:58 2010
+++ src/external/bsd/pkg_install/dist/lib/pkg_signature.c	Tue Sep 17 19:56:50 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: pkg_signature.c,v 1.1.1.7 2010/02/20 04:41:58 joerg Exp $	*/
+/*	$NetBSD: pkg_signature.c,v 1.1.1.7.14.1 2013/09/17 19:56:50 msaitoh Exp $	*/
 
 #if HAVE_CONFIG_H
 #include config.h
@@ -7,7 +7,7 @@
 #if HAVE_SYS_CDEFS_H
 #include sys/cdefs.h
 #endif
-__RCSID($NetBSD: pkg_signature.c,v 1.1.1.7 2010/02/20 04:41:58 joerg Exp $);
+__RCSID($NetBSD: pkg_signature.c,v 1.1.1.7.14.1 2013/09/17 19:56:50 msaitoh Exp $);
 
 /*-
  * Copyright (c) 2008 Joerg Sonnenberger jo...@netbsd.org.
@@ -325,10 +325,7 @@ pkg_verify_signature(const char *archive
 
 	*pkgname = NULL;
 
-	state = xmalloc(sizeof(*state));
-	state-sign_blocks = NULL;
-	state-sign_buf = NULL;
-	state-archive = NULL;
+	state = xcalloc(sizeof(*state), 1);
 
 	r = read_file_from_archive(archive_name, *archive, entry, HASH_FNAME,
 	hash_file, hash_len);



CVS commit: [netbsd-6-1] src/doc

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Sep 17 19:54:49 UTC 2013

Modified Files:
src/doc [netbsd-6-1]: CHANGES-6.1.2

Log Message:
Ticket 943.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.5 -r1.1.2.6 src/doc/CHANGES-6.1.2

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.2
diff -u src/doc/CHANGES-6.1.2:1.1.2.5 src/doc/CHANGES-6.1.2:1.1.2.6
--- src/doc/CHANGES-6.1.2:1.1.2.5	Sat Sep 14 13:45:27 2013
+++ src/doc/CHANGES-6.1.2	Tue Sep 17 19:54:49 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.1.2,v 1.1.2.5 2013/09/14 13:45:27 bouyer Exp $
+# $NetBSD: CHANGES-6.1.2,v 1.1.2.6 2013/09/17 19:54:49 msaitoh Exp $
 
 A complete list of changes from the NetBSD 6.1.1 release to the NetBSD 6.1.2
 release:
@@ -63,3 +63,10 @@ lib/libc/stdlib/_env.c1.8
 	original environment like Emacs 24.
 	[tron, ticket #940]
 
+external/bsd/pkg_install/dist/lib/pkg_signature.c 1.2
+
+	Fixed installation of signed packages. Some variables part of struct
+	signature_archive were not initialized properly, therefore randomly
+	failing in the verify_signature_read_cb() callback.
+	Partly closes PR pkg/48194.
+	[khorben, ticket #943]



CVS commit: src/share/man/man9

2013-09-17 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Sep 17 20:57:45 UTC 2013

Modified Files:
src/share/man/man9: bus_dma.9

Log Message:
fix proto


To generate a diff of this commit:
cvs rdiff -u -r1.57 -r1.58 src/share/man/man9/bus_dma.9

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man9/bus_dma.9
diff -u src/share/man/man9/bus_dma.9:1.57 src/share/man/man9/bus_dma.9:1.58
--- src/share/man/man9/bus_dma.9:1.57	Sat Jul  9 07:57:53 2011
+++ src/share/man/man9/bus_dma.9	Tue Sep 17 20:57:45 2013
@@ -1,4 +1,4 @@
-.\ $NetBSD: bus_dma.9,v 1.57 2011/07/09 07:57:53 wiz Exp $
+.\ $NetBSD: bus_dma.9,v 1.58 2013/09/17 20:57:45 pooka Exp $
 .\
 .\ Copyright (c) 1996, 1997, 1998, 2001, 2005, 2006 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -58,7 +58,7 @@
 .Fn bus_dmamap_destroy bus_dma_tag_t tag bus_dmamap_t dmam
 .Ft int
 .Fn bus_dmamap_load bus_dma_tag_t tag bus_dmamap_t dmam void *buf \
-bus_size_t buflen struct lwp *l int flags
+bus_size_t buflen struct proc *p int flags
 .Ft int
 .Fn bus_dmamap_load_mbuf bus_dma_tag_t tag bus_dmamap_t dmam \
 struct mbuf *chain int flags
@@ -243,7 +243,7 @@ Behavior is not defined if invalid argum
 If given valid arguments,
 .Fn bus_dmamap_destroy
 always succeeds.
-.It Fn bus_dmamap_load tag dmam buf buflen l flags
+.It Fn bus_dmamap_load tag dmam buf buflen p flags
 Loads a DMA handle with mappings for a DMA transfer.
 It assumes that all pages involved in a DMA transfer are wired.
 Arguments are as follows:
@@ -257,13 +257,13 @@ The DMA handle with which to map the tra
 The buffer to be used for the DMA transfer.
 .It Fa buflen
 The size of the buffer.
-.It Fa l
+.It Fa p
 Used to indicate the address space in which the buffer is located.
 If
 .Dv NULL ,
 the buffer is assumed to be in kernel space.
-Otherwise, the buffer is assumed to be in lwp
-.Fa l Ap s
+Otherwise, the buffer is assumed to be in proc
+.Fa p Ap s
 address space.
 .It Fa flags
 are defined as follows:



CVS commit: [netbsd-6] src/external/bsd/pkg_install/dist/lib

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Sep 17 19:38:00 UTC 2013

Modified Files:
src/external/bsd/pkg_install/dist/lib [netbsd-6]: pkg_signature.c

Log Message:
Pull up following revision(s) (requested by khorben in ticket #943):
external/bsd/pkg_install/dist/lib/pkg_signature.c: revision 1.2
Fixed installation of signed packages. Some variables part of struct
signature_archive were not initialized properly, therefore randomly
failing in the verify_signature_read_cb() callback.
Partly closes PR pkg/48194; pkgsrc needs to be updated as well.
please commit agc@
XXX pull-up to netbsd-6


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.7 -r1.1.1.7.8.1 \
src/external/bsd/pkg_install/dist/lib/pkg_signature.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/pkg_install/dist/lib/pkg_signature.c
diff -u src/external/bsd/pkg_install/dist/lib/pkg_signature.c:1.1.1.7 src/external/bsd/pkg_install/dist/lib/pkg_signature.c:1.1.1.7.8.1
--- src/external/bsd/pkg_install/dist/lib/pkg_signature.c:1.1.1.7	Sat Feb 20 04:41:58 2010
+++ src/external/bsd/pkg_install/dist/lib/pkg_signature.c	Tue Sep 17 19:38:00 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: pkg_signature.c,v 1.1.1.7 2010/02/20 04:41:58 joerg Exp $	*/
+/*	$NetBSD: pkg_signature.c,v 1.1.1.7.8.1 2013/09/17 19:38:00 msaitoh Exp $	*/
 
 #if HAVE_CONFIG_H
 #include config.h
@@ -7,7 +7,7 @@
 #if HAVE_SYS_CDEFS_H
 #include sys/cdefs.h
 #endif
-__RCSID($NetBSD: pkg_signature.c,v 1.1.1.7 2010/02/20 04:41:58 joerg Exp $);
+__RCSID($NetBSD: pkg_signature.c,v 1.1.1.7.8.1 2013/09/17 19:38:00 msaitoh Exp $);
 
 /*-
  * Copyright (c) 2008 Joerg Sonnenberger jo...@netbsd.org.
@@ -325,10 +325,7 @@ pkg_verify_signature(const char *archive
 
 	*pkgname = NULL;
 
-	state = xmalloc(sizeof(*state));
-	state-sign_blocks = NULL;
-	state-sign_buf = NULL;
-	state-archive = NULL;
+	state = xcalloc(sizeof(*state), 1);
 
 	r = read_file_from_archive(archive_name, *archive, entry, HASH_FNAME,
 	hash_file, hash_len);



CVS commit: [netbsd-6] src/doc

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Sep 17 19:41:00 UTC 2013

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Cleanup a bit for ticket 943.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.38 -r1.1.2.39 src/doc/CHANGES-6.2

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.2
diff -u src/doc/CHANGES-6.2:1.1.2.38 src/doc/CHANGES-6.2:1.1.2.39
--- src/doc/CHANGES-6.2:1.1.2.38	Tue Sep 17 19:39:38 2013
+++ src/doc/CHANGES-6.2	Tue Sep 17 19:41:00 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.2,v 1.1.2.38 2013/09/17 19:39:38 msaitoh Exp $
+# $NetBSD: CHANGES-6.2,v 1.1.2.39 2013/09/17 19:41:00 msaitoh Exp $
 
 A complete list of changes from the 6.1 release until the 6.2 release:
 
@@ -707,5 +707,5 @@ external/bsd/pkg_install/dist/lib/pkg_si
 	Fixed installation of signed packages. Some variables part of struct
 	signature_archive were not initialized properly, therefore randomly
 	failing in the verify_signature_read_cb() callback.
-	Partly closes PR pkg/48194; pkgsrc needs to be updated as well.
+	Partly closes PR pkg/48194.
 	[khorben, ticket #943]



CVS commit: src/sys/rump/librump

2013-09-17 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Sep 17 23:55:17 UTC 2013

Modified Files:
src/sys/rump/librump/rumpdev: rump_dev.c
src/sys/rump/librump/rumpkern: rump_private.h

Log Message:
Make it possible to run component constructors after mainbus attaches,
but before config_finalize() is run.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/rump/librump/rumpdev/rump_dev.c
cvs rdiff -u -r1.76 -r1.77 src/sys/rump/librump/rumpkern/rump_private.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpdev/rump_dev.c
diff -u src/sys/rump/librump/rumpdev/rump_dev.c:1.22 src/sys/rump/librump/rumpdev/rump_dev.c:1.23
--- src/sys/rump/librump/rumpdev/rump_dev.c:1.22	Mon Jan 14 16:50:54 2013
+++ src/sys/rump/librump/rumpdev/rump_dev.c	Tue Sep 17 23:55:16 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump_dev.c,v 1.22 2013/01/14 16:50:54 pooka Exp $	*/
+/*	$NetBSD: rump_dev.c,v 1.23 2013/09/17 23:55:16 pooka Exp $	*/
 
 /*
  * Copyright (c) 2009 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: rump_dev.c,v 1.22 2013/01/14 16:50:54 pooka Exp $);
+__KERNEL_RCSID(0, $NetBSD: rump_dev.c,v 1.23 2013/09/17 23:55:16 pooka Exp $);
 
 #include sys/param.h
 #include sys/device.h
@@ -55,7 +55,13 @@ RUMP_COMPONENT(RUMP__FACTION_DEV)
 	rump_pdev_finalize();
 
 	cold = 0;
-	if (rump_component_count(RUMP_COMPONENT_DEV)  0) {
+
+	/*
+	 * XXX: does the if make any sense?  What if someone wants
+	 * to dynamically load a driver later on?
+	 */
+	if (rump_component_count(RUMP_COMPONENT_DEV)  0
+	|| rump_component_count(RUMP_COMPONENT_DEV_AFTERMAINBUS)  0) {
 		extern struct cfdriver mainbus_cd;
 		extern struct cfattach mainbus_ca;
 		extern struct cfdata cfdata[];
@@ -66,6 +72,7 @@ RUMP_COMPONENT(RUMP__FACTION_DEV)
 		if (config_rootfound(mainbus, NULL) == NULL)
 			panic(no mainbus);
 
+		rump_component_init(RUMP_COMPONENT_DEV_AFTERMAINBUS);
 	}
 	config_finalize();
 

Index: src/sys/rump/librump/rumpkern/rump_private.h
diff -u src/sys/rump/librump/rumpkern/rump_private.h:1.76 src/sys/rump/librump/rumpkern/rump_private.h:1.77
--- src/sys/rump/librump/rumpkern/rump_private.h:1.76	Sat Sep  7 17:58:00 2013
+++ src/sys/rump/librump/rumpkern/rump_private.h	Tue Sep 17 23:55:16 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump_private.h,v 1.76 2013/09/07 17:58:00 pooka Exp $	*/
+/*	$NetBSD: rump_private.h,v 1.77 2013/09/17 23:55:16 pooka Exp $	*/
 
 /*
  * Copyright (c) 2007-2011 Antti Kantee.  All Rights Reserved.
@@ -54,6 +54,7 @@ extern struct sysent rump_sysent[];
 
 enum rump_component_type {
 	RUMP_COMPONENT_DEV,
+		RUMP_COMPONENT_DEV_AFTERMAINBUS,
 	RUMP_COMPONENT_NET,
 		RUMP_COMPONENT_NET_ROUTE,
 		RUMP_COMPONENT_NET_IF,



CVS commit: [netbsd-6] src/sys/netinet6

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:22:11 UTC 2013

Modified Files:
src/sys/netinet6 [netbsd-6]: in6.c

Log Message:
Pull up following revision(s) (requested by spz in ticket #944):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.


To generate a diff of this commit:
cvs rdiff -u -r1.159.4.1 -r1.159.4.2 src/sys/netinet6/in6.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet6/in6.c
diff -u src/sys/netinet6/in6.c:1.159.4.1 src/sys/netinet6/in6.c:1.159.4.2
--- src/sys/netinet6/in6.c:1.159.4.1	Mon Jul  8 07:40:07 2013
+++ src/sys/netinet6/in6.c	Wed Sep 18 03:22:11 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: in6.c,v 1.159.4.1 2013/07/08 07:40:07 jdc Exp $	*/
+/*	$NetBSD: in6.c,v 1.159.4.2 2013/09/18 03:22:11 msaitoh Exp $	*/
 /*	$KAME: in6.c,v 1.198 2001/07/18 09:12:38 itojun Exp $	*/
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.159.4.1 2013/07/08 07:40:07 jdc Exp $);
+__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.159.4.2 2013/09/18 03:22:11 msaitoh Exp $);
 
 #include opt_inet.h
 #include opt_pfil_hooks.h
@@ -367,6 +367,8 @@ in6_control1(struct socket *so, u_long c
 #ifdef SIOCSIFCONF_X25
 	case SIOCSIFCONF_X25:
 #endif
+	case SIOCSIFBRDADDR:
+	case SIOCSIFNETMASK:
 		return EOPNOTSUPP;
 	case SIOCGETSGCNT_IN6:
 	case SIOCGETMIFCNT_IN6:



CVS commit: [netbsd-6] src/doc

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:23:28 UTC 2013

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket 944.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.39 -r1.1.2.40 src/doc/CHANGES-6.2

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.2
diff -u src/doc/CHANGES-6.2:1.1.2.39 src/doc/CHANGES-6.2:1.1.2.40
--- src/doc/CHANGES-6.2:1.1.2.39	Tue Sep 17 19:41:00 2013
+++ src/doc/CHANGES-6.2	Wed Sep 18 03:23:28 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.2,v 1.1.2.39 2013/09/17 19:41:00 msaitoh Exp $
+# $NetBSD: CHANGES-6.2,v 1.1.2.40 2013/09/18 03:23:28 msaitoh Exp $
 
 A complete list of changes from the 6.1 release until the 6.2 release:
 
@@ -709,3 +709,9 @@ external/bsd/pkg_install/dist/lib/pkg_si
 	failing in the verify_signature_read_cb() callback.
 	Partly closes PR pkg/48194.
 	[khorben, ticket #943]
+
+sys/netinet6/in6.c1.167 via patch
+
+	Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from
+	FreeBSD.
+	[spz, ticket #944]



CVS commit: [netbsd-6-1] src/sys/netinet6

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:23:56 UTC 2013

Modified Files:
src/sys/netinet6 [netbsd-6-1]: in6.c

Log Message:
Pull up following revision(s) (requested by spz in ticket #944):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.


To generate a diff of this commit:
cvs rdiff -u -r1.159.10.1 -r1.159.10.2 src/sys/netinet6/in6.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet6/in6.c
diff -u src/sys/netinet6/in6.c:1.159.10.1 src/sys/netinet6/in6.c:1.159.10.2
--- src/sys/netinet6/in6.c:1.159.10.1	Mon Jul  8 07:40:56 2013
+++ src/sys/netinet6/in6.c	Wed Sep 18 03:23:56 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: in6.c,v 1.159.10.1 2013/07/08 07:40:56 jdc Exp $	*/
+/*	$NetBSD: in6.c,v 1.159.10.2 2013/09/18 03:23:56 msaitoh Exp $	*/
 /*	$KAME: in6.c,v 1.198 2001/07/18 09:12:38 itojun Exp $	*/
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.159.10.1 2013/07/08 07:40:56 jdc Exp $);
+__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.159.10.2 2013/09/18 03:23:56 msaitoh Exp $);
 
 #include opt_inet.h
 #include opt_pfil_hooks.h
@@ -367,6 +367,8 @@ in6_control1(struct socket *so, u_long c
 #ifdef SIOCSIFCONF_X25
 	case SIOCSIFCONF_X25:
 #endif
+	case SIOCSIFBRDADDR:
+	case SIOCSIFNETMASK:
 		return EOPNOTSUPP;
 	case SIOCGETSGCNT_IN6:
 	case SIOCGETMIFCNT_IN6:



CVS commit: [netbsd-6-1] src/doc

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:25:15 UTC 2013

Modified Files:
src/doc [netbsd-6-1]: CHANGES-6.1.2

Log Message:
Ticket 944.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.6 -r1.1.2.7 src/doc/CHANGES-6.1.2

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.2
diff -u src/doc/CHANGES-6.1.2:1.1.2.6 src/doc/CHANGES-6.1.2:1.1.2.7
--- src/doc/CHANGES-6.1.2:1.1.2.6	Tue Sep 17 19:54:49 2013
+++ src/doc/CHANGES-6.1.2	Wed Sep 18 03:25:15 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.1.2,v 1.1.2.6 2013/09/17 19:54:49 msaitoh Exp $
+# $NetBSD: CHANGES-6.1.2,v 1.1.2.7 2013/09/18 03:25:15 msaitoh Exp $
 
 A complete list of changes from the NetBSD 6.1.1 release to the NetBSD 6.1.2
 release:
@@ -70,3 +70,9 @@ external/bsd/pkg_install/dist/lib/pkg_si
 	failing in the verify_signature_read_cb() callback.
 	Partly closes PR pkg/48194.
 	[khorben, ticket #943]
+
+sys/netinet6/in6.c1.167 via patch
+
+	Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from
+	FreeBSD.
+	[spz, ticket #944]



CVS commit: [netbsd-6-0] src/sys/netinet6

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:25:47 UTC 2013

Modified Files:
src/sys/netinet6 [netbsd-6-0]: in6.c

Log Message:
Pull up following revision(s) (requested by spz in ticket #944):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.


To generate a diff of this commit:
cvs rdiff -u -r1.159.8.1 -r1.159.8.2 src/sys/netinet6/in6.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet6/in6.c
diff -u src/sys/netinet6/in6.c:1.159.8.1 src/sys/netinet6/in6.c:1.159.8.2
--- src/sys/netinet6/in6.c:1.159.8.1	Mon Jul  8 07:40:34 2013
+++ src/sys/netinet6/in6.c	Wed Sep 18 03:25:47 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: in6.c,v 1.159.8.1 2013/07/08 07:40:34 jdc Exp $	*/
+/*	$NetBSD: in6.c,v 1.159.8.2 2013/09/18 03:25:47 msaitoh Exp $	*/
 /*	$KAME: in6.c,v 1.198 2001/07/18 09:12:38 itojun Exp $	*/
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.159.8.1 2013/07/08 07:40:34 jdc Exp $);
+__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.159.8.2 2013/09/18 03:25:47 msaitoh Exp $);
 
 #include opt_inet.h
 #include opt_pfil_hooks.h
@@ -367,6 +367,8 @@ in6_control1(struct socket *so, u_long c
 #ifdef SIOCSIFCONF_X25
 	case SIOCSIFCONF_X25:
 #endif
+	case SIOCSIFBRDADDR:
+	case SIOCSIFNETMASK:
 		return EOPNOTSUPP;
 	case SIOCGETSGCNT_IN6:
 	case SIOCGETMIFCNT_IN6:



CVS commit: [netbsd-6-0] src/doc

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:26:27 UTC 2013

Modified Files:
src/doc [netbsd-6-0]: CHANGES-6.0.3

Log Message:
Ticket 944.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.21 -r1.1.2.22 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.21 src/doc/CHANGES-6.0.3:1.1.2.22
--- src/doc/CHANGES-6.0.3:1.1.2.21	Tue Sep 17 19:57:27 2013
+++ src/doc/CHANGES-6.0.3	Wed Sep 18 03:26:27 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.0.3,v 1.1.2.21 2013/09/17 19:57:27 msaitoh Exp $
+# $NetBSD: CHANGES-6.0.3,v 1.1.2.22 2013/09/18 03:26:27 msaitoh Exp $
 
 A complete list of changes from the NetBSD 6.0.2 release to the NetBSD 6.0.3
 release:
@@ -218,3 +218,9 @@ external/bsd/pkg_install/dist/lib/pkg_si
 	failing in the verify_signature_read_cb() callback.
 	Partly closes PR pkg/48194.
 	[khorben, ticket #943]
+
+sys/netinet6/in6.c1.167 via patch
+
+	Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from
+	FreeBSD.
+	[spz, ticket #944]



CVS commit: [netbsd-5] src/sys/netinet6

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:41:45 UTC 2013

Modified Files:
src/sys/netinet6 [netbsd-5]: in6.c

Log Message:
Pull up following revision(s) (requested by spz in ticket #1876):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.


To generate a diff of this commit:
cvs rdiff -u -r1.141 -r1.141.4.1 src/sys/netinet6/in6.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet6/in6.c
diff -u src/sys/netinet6/in6.c:1.141 src/sys/netinet6/in6.c:1.141.4.1
--- src/sys/netinet6/in6.c:1.141	Thu Jul 31 18:24:07 2008
+++ src/sys/netinet6/in6.c	Wed Sep 18 03:41:45 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: in6.c,v 1.141 2008/07/31 18:24:07 matt Exp $	*/
+/*	$NetBSD: in6.c,v 1.141.4.1 2013/09/18 03:41:45 msaitoh Exp $	*/
 /*	$KAME: in6.c,v 1.198 2001/07/18 09:12:38 itojun Exp $	*/
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.141 2008/07/31 18:24:07 matt Exp $);
+__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.141.4.1 2013/09/18 03:41:45 msaitoh Exp $);
 
 #include opt_inet.h
 #include opt_pfil_hooks.h
@@ -361,6 +361,8 @@ in6_control1(struct socket *so, u_long c
 #ifdef SIOCSIFCONF_X25
 	case SIOCSIFCONF_X25:
 #endif
+	case SIOCSIFBRDADDR:
+	case SIOCSIFNETMASK:
 		return EOPNOTSUPP;
 	case SIOCGETSGCNT_IN6:
 	case SIOCGETMIFCNT_IN6:



CVS commit: [netbsd-5] src/doc

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:42:21 UTC 2013

Modified Files:
src/doc [netbsd-5]: CHANGES-5.3

Log Message:
Ticket 1876.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.26 -r1.1.2.27 src/doc/CHANGES-5.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-5.3
diff -u src/doc/CHANGES-5.3:1.1.2.26 src/doc/CHANGES-5.3:1.1.2.27
--- src/doc/CHANGES-5.3:1.1.2.26	Sat Sep 14 13:39:00 2013
+++ src/doc/CHANGES-5.3	Wed Sep 18 03:42:21 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.3,v 1.1.2.26 2013/09/14 13:39:00 bouyer Exp $
+# $NetBSD: CHANGES-5.3,v 1.1.2.27 2013/09/18 03:42:21 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.3
 release:
@@ -551,3 +551,8 @@ lib/libc/locale/global_locale.c 
 	provide consistent and correct data for the C locale.
 	[joerg, ticket #1873] 
 
+sys/netinet6/in6.c1.167 via patch
+
+	Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from
+	FreeBSD.
+	[spz, ticket #1876]



CVS commit: [netbsd-5-2] src/sys/netinet6

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:42:53 UTC 2013

Modified Files:
src/sys/netinet6 [netbsd-5-2]: in6.c

Log Message:
Pull up following revision(s) (requested by spz in ticket #1876):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.


To generate a diff of this commit:
cvs rdiff -u -r1.141 -r1.141.14.1 src/sys/netinet6/in6.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet6/in6.c
diff -u src/sys/netinet6/in6.c:1.141 src/sys/netinet6/in6.c:1.141.14.1
--- src/sys/netinet6/in6.c:1.141	Thu Jul 31 18:24:07 2008
+++ src/sys/netinet6/in6.c	Wed Sep 18 03:42:53 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: in6.c,v 1.141 2008/07/31 18:24:07 matt Exp $	*/
+/*	$NetBSD: in6.c,v 1.141.14.1 2013/09/18 03:42:53 msaitoh Exp $	*/
 /*	$KAME: in6.c,v 1.198 2001/07/18 09:12:38 itojun Exp $	*/
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.141 2008/07/31 18:24:07 matt Exp $);
+__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.141.14.1 2013/09/18 03:42:53 msaitoh Exp $);
 
 #include opt_inet.h
 #include opt_pfil_hooks.h
@@ -361,6 +361,8 @@ in6_control1(struct socket *so, u_long c
 #ifdef SIOCSIFCONF_X25
 	case SIOCSIFCONF_X25:
 #endif
+	case SIOCSIFBRDADDR:
+	case SIOCSIFNETMASK:
 		return EOPNOTSUPP;
 	case SIOCGETSGCNT_IN6:
 	case SIOCGETMIFCNT_IN6:



CVS commit: [netbsd-5-2] src/doc

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:44:01 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Ticket 1876.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.14 -r1.1.2.15 src/doc/CHANGES-5.2.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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.14 src/doc/CHANGES-5.2.1:1.1.2.15
--- src/doc/CHANGES-5.2.1:1.1.2.14	Wed Sep 11 07:05:29 2013
+++ src/doc/CHANGES-5.2.1	Wed Sep 18 03:44:01 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.14 2013/09/11 07:05:29 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.15 2013/09/18 03:44:01 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -239,3 +239,9 @@ sys/net/bpf.c	1.176 via patch
 	Avoid kernel panic caused by setting a very small bpf buffer size.
 	Fixes PR/48198 reported by Peter Bex.
 	[spz, ticket #1874]
+
+sys/netinet6/in6.c1.167 via patch
+
+	Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from
+	FreeBSD.
+	[spz, ticket #1876]



CVS commit: [netbsd-5-1] src/sys/netinet6

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:44:36 UTC 2013

Modified Files:
src/sys/netinet6 [netbsd-5-1]: in6.c

Log Message:
Pull up following revision(s) (requested by spz in ticket #1876):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.


To generate a diff of this commit:
cvs rdiff -u -r1.141 -r1.141.10.1 src/sys/netinet6/in6.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet6/in6.c
diff -u src/sys/netinet6/in6.c:1.141 src/sys/netinet6/in6.c:1.141.10.1
--- src/sys/netinet6/in6.c:1.141	Thu Jul 31 18:24:07 2008
+++ src/sys/netinet6/in6.c	Wed Sep 18 03:44:36 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: in6.c,v 1.141 2008/07/31 18:24:07 matt Exp $	*/
+/*	$NetBSD: in6.c,v 1.141.10.1 2013/09/18 03:44:36 msaitoh Exp $	*/
 /*	$KAME: in6.c,v 1.198 2001/07/18 09:12:38 itojun Exp $	*/
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.141 2008/07/31 18:24:07 matt Exp $);
+__KERNEL_RCSID(0, $NetBSD: in6.c,v 1.141.10.1 2013/09/18 03:44:36 msaitoh Exp $);
 
 #include opt_inet.h
 #include opt_pfil_hooks.h
@@ -361,6 +361,8 @@ in6_control1(struct socket *so, u_long c
 #ifdef SIOCSIFCONF_X25
 	case SIOCSIFCONF_X25:
 #endif
+	case SIOCSIFBRDADDR:
+	case SIOCSIFNETMASK:
 		return EOPNOTSUPP;
 	case SIOCGETSGCNT_IN6:
 	case SIOCGETMIFCNT_IN6:



CVS commit: [netbsd-5-1] src/doc

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:45:18 UTC 2013

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.3

Log Message:
Ticket 1876.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.46 -r1.1.2.47 src/doc/CHANGES-5.1.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-5.1.3
diff -u src/doc/CHANGES-5.1.3:1.1.2.46 src/doc/CHANGES-5.1.3:1.1.2.47
--- src/doc/CHANGES-5.1.3:1.1.2.46	Wed Sep 11 07:32:56 2013
+++ src/doc/CHANGES-5.1.3	Wed Sep 18 03:45:18 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.3,v 1.1.2.46 2013/09/11 07:32:56 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.3,v 1.1.2.47 2013/09/18 03:45:18 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.2 release to the NetBSD 5.1.3
 release:
@@ -2525,3 +2525,9 @@ sys/net/bpf.c	1.176 via patch
 	Avoid kernel panic caused by setting a very small bpf buffer size.
 	Fixes PR/48198 reported by Peter Bex.
 	[spz, ticket #1874]
+
+sys/netinet6/in6.c1.167 via patch
+
+	Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from
+	FreeBSD.
+	[spz, ticket #1876]