CVS commit: src/sys/kern

2009-10-22 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Oct 22 13:12:47 UTC 2009

Modified Files:
src/sys/kern: sys_lwp.c

Log Message:
Make lwp_park_sobj and lwp_park_tab static.
Wrap long lines while here.


To generate a diff of this commit:
cvs rdiff -u -r1.46 -r1.47 src/sys/kern/sys_lwp.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/kern/sys_lwp.c
diff -u src/sys/kern/sys_lwp.c:1.46 src/sys/kern/sys_lwp.c:1.47
--- src/sys/kern/sys_lwp.c:1.46	Wed Oct 21 21:12:06 2009
+++ src/sys/kern/sys_lwp.c	Thu Oct 22 13:12:47 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: sys_lwp.c,v 1.46 2009/10/21 21:12:06 rmind Exp $	*/
+/*	$NetBSD: sys_lwp.c,v 1.47 2009/10/22 13:12:47 rmind Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: sys_lwp.c,v 1.46 2009/10/21 21:12:06 rmind Exp $);
+__KERNEL_RCSID(0, $NetBSD: sys_lwp.c,v 1.47 2009/10/22 13:12:47 rmind Exp $);
 
 #include sys/param.h
 #include sys/systm.h
@@ -55,7 +55,7 @@
 
 #define	LWP_UNPARK_MAX		1024
 
-syncobj_t lwp_park_sobj = {
+static syncobj_t lwp_park_sobj = {
 	SOBJ_SLEEPQ_LIFO,
 	sleepq_unsleep,
 	sleepq_changepri,
@@ -63,7 +63,7 @@
 	syncobj_noowner,
 };
 
-sleeptab_t	lwp_park_tab;
+static sleeptab_t	lwp_park_tab;
 
 void
 lwp_sys_init(void)
@@ -71,9 +71,9 @@
 	sleeptab_init(lwp_park_tab);
 }
 
-/* ARGSUSED */
 int
-sys__lwp_create(struct lwp *l, const struct sys__lwp_create_args *uap, register_t *retval)
+sys__lwp_create(struct lwp *l, const struct sys__lwp_create_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(const ucontext_t *) ucp;
@@ -179,7 +179,8 @@
 }
 
 int
-sys__lwp_setprivate(struct lwp *l, const struct sys__lwp_setprivate_args *uap, register_t *retval)
+sys__lwp_setprivate(struct lwp *l, const struct sys__lwp_setprivate_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(void *) ptr;
@@ -194,7 +195,8 @@
 }
 
 int
-sys__lwp_suspend(struct lwp *l, const struct sys__lwp_suspend_args *uap, register_t *retval)
+sys__lwp_suspend(struct lwp *l, const struct sys__lwp_suspend_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(lwpid_t) target;
@@ -275,7 +277,8 @@
 }
 
 int
-sys__lwp_continue(struct lwp *l, const struct sys__lwp_continue_args *uap, register_t *retval)
+sys__lwp_continue(struct lwp *l, const struct sys__lwp_continue_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(lwpid_t) target;
@@ -300,7 +303,8 @@
 }
 
 int
-sys__lwp_wakeup(struct lwp *l, const struct sys__lwp_wakeup_args *uap, register_t *retval)
+sys__lwp_wakeup(struct lwp *l, const struct sys__lwp_wakeup_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(lwpid_t) target;
@@ -338,7 +342,8 @@
 }
 
 int
-sys__lwp_wait(struct lwp *l, const struct sys__lwp_wait_args *uap, register_t *retval)
+sys__lwp_wait(struct lwp *l, const struct sys__lwp_wait_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(lwpid_t) wait_for;
@@ -364,9 +369,9 @@
 	return 0;
 }
 
-/* ARGSUSED */
 int
-sys__lwp_kill(struct lwp *l, const struct sys__lwp_kill_args *uap, register_t *retval)
+sys__lwp_kill(struct lwp *l, const struct sys__lwp_kill_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(lwpid_t)	target;
@@ -401,7 +406,8 @@
 }
 
 int
-sys__lwp_detach(struct lwp *l, const struct sys__lwp_detach_args *uap, register_t *retval)
+sys__lwp_detach(struct lwp *l, const struct sys__lwp_detach_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(lwpid_t)	target;
@@ -624,7 +630,8 @@
 }
 
 int
-sys__lwp_unpark(struct lwp *l, const struct sys__lwp_unpark_args *uap, register_t *retval)
+sys__lwp_unpark(struct lwp *l, const struct sys__lwp_unpark_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(lwpid_t)		target;
@@ -635,7 +642,8 @@
 }
 
 int
-sys__lwp_unpark_all(struct lwp *l, const struct sys__lwp_unpark_all_args *uap, register_t *retval)
+sys__lwp_unpark_all(struct lwp *l, const struct sys__lwp_unpark_all_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(const lwpid_t *)	targets;
@@ -746,7 +754,8 @@
 }
 
 int
-sys__lwp_setname(struct lwp *l, const struct sys__lwp_setname_args *uap, register_t *retval)
+sys__lwp_setname(struct lwp *l, const struct sys__lwp_setname_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(lwpid_t)		target;
@@ -795,7 +804,8 @@
 }
 
 int
-sys__lwp_getname(struct lwp *l, const struct sys__lwp_getname_args *uap, register_t *retval)
+sys__lwp_getname(struct lwp *l, const struct sys__lwp_getname_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(lwpid_t)		target;
@@ -828,7 +838,8 @@
 }
 
 int
-sys__lwp_ctl(struct lwp *l, const struct sys__lwp_ctl_args *uap, register_t *retval)
+sys__lwp_ctl(struct lwp *l, const struct sys__lwp_ctl_args *uap,
+register_t *retval)
 {
 	/* {
 		syscallarg(int)			features;



CVS commit: src/external/bsd/bind/dist/bin/named

2009-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 22 14:29:06 UTC 2009

Modified Files:
src/external/bsd/bind/dist/bin/named: named.conf.docbook
named.conf.html

Log Message:
fix typo on server-id; from Anon Ymous


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/bsd/bind/dist/bin/named/named.conf.docbook \
src/external/bsd/bind/dist/bin/named/named.conf.html

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/bind/dist/bin/named/named.conf.docbook
diff -u src/external/bsd/bind/dist/bin/named/named.conf.docbook:1.1.1.1 src/external/bsd/bind/dist/bin/named/named.conf.docbook:1.2
--- src/external/bsd/bind/dist/bin/named/named.conf.docbook:1.1.1.1	Sun Mar 22 10:55:55 2009
+++ src/external/bsd/bind/dist/bin/named/named.conf.docbook	Thu Oct 22 10:29:06 2009
@@ -206,7 +206,7 @@
 	random-device replaceablequoted_string/replaceable;
 	recursive-clients replaceableinteger/replaceable;
 	serial-query-rate replaceableinteger/replaceable;
-	server-id ( replaceablequoted_string/replaceable | none |;
+	server-id ( replaceablequoted_string/replaceable | none );
 	stacksize replaceablesize/replaceable;
 	statistics-file replaceablequoted_string/replaceable;
 	statistics-interval replaceableinteger/replaceable; // not yet implemented
Index: src/external/bsd/bind/dist/bin/named/named.conf.html
diff -u src/external/bsd/bind/dist/bin/named/named.conf.html:1.1.1.1 src/external/bsd/bind/dist/bin/named/named.conf.html:1.2
--- src/external/bsd/bind/dist/bin/named/named.conf.html:1.1.1.1	Sun Mar 22 10:56:03 2009
+++ src/external/bsd/bind/dist/bin/named/named.conf.html	Thu Oct 22 10:29:06 2009
@@ -176,7 +176,7 @@
 	random-device em class=replaceablecodequoted_string/code/em;br
 	recursive-clients em class=replaceablecodeinteger/code/em;br
 	serial-query-rate em class=replaceablecodeinteger/code/em;br
-	server-id ( em class=replaceablecodequoted_string/code/em | none |;br
+	server-id ( em class=replaceablecodequoted_string/code/em | none );br
 	stacksize em class=replaceablecodesize/code/em;br
 	statistics-file em class=replaceablecodequoted_string/code/em;br
 	statistics-interval em class=replaceablecodeinteger/code/em; // not yet implementedbr



CVS commit: src/external/bsd/bind/dist/bin/named

2009-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 22 14:30:05 UTC 2009

Modified Files:
src/external/bsd/bind/dist/bin/named: named.conf.5

Log Message:
one more paren from Anon Ymous


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/bsd/bind/dist/bin/named/named.conf.5

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/bind/dist/bin/named/named.conf.5
diff -u src/external/bsd/bind/dist/bin/named/named.conf.5:1.1.1.1 src/external/bsd/bind/dist/bin/named/named.conf.5:1.2
--- src/external/bsd/bind/dist/bin/named/named.conf.5:1.1.1.1	Sun Mar 22 10:56:02 2009
+++ src/external/bsd/bind/dist/bin/named/named.conf.5	Thu Oct 22 10:30:05 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: named.conf.5,v 1.1.1.1 2009/03/22 14:56:02 christos Exp $
+.\	$NetBSD: named.conf.5,v 1.2 2009/10/22 14:30:05 christos Exp $
 .\
 .\ Copyright (C) 2004-2008 Internet Systems Consortium, Inc. (ISC)
 .\ 
@@ -180,7 +180,7 @@
 	random\-device \fIquoted_string\fR;
 	recursive\-clients \fIinteger\fR;
 	serial\-query\-rate \fIinteger\fR;
-	server\-id ( \fIquoted_string\fR | none |;
+	server\-id ( \fIquoted_string\fR | none );
 	stacksize \fIsize\fR;
 	statistics\-file \fIquoted_string\fR;
 	statistics\-interval \fIinteger\fR; // not yet implemented



CVS commit: src/bin/ksh

2009-10-22 Thread Sean Boudreau
Module Name:src
Committed By:   seanb
Date:   Thu Oct 22 15:53:19 UTC 2009

Modified Files:
src/bin/ksh: misc.c

Log Message:
Wrong buffer len being passed to strlcpy().  Innocuous
here but...


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/bin/ksh/misc.c

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

Modified files:

Index: src/bin/ksh/misc.c
diff -u src/bin/ksh/misc.c:1.13 src/bin/ksh/misc.c:1.14
--- src/bin/ksh/misc.c:1.13	Sat Apr 25 05:11:37 2009
+++ src/bin/ksh/misc.c	Thu Oct 22 15:53:19 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: misc.c,v 1.13 2009/04/25 05:11:37 lukem Exp $	*/
+/*	$NetBSD: misc.c,v 1.14 2009/10/22 15:53:19 seanb Exp $	*/
 
 /*
  * Miscellaneous functions
@@ -6,7 +6,7 @@
 #include sys/cdefs.h
 
 #ifndef lint
-__RCSID($NetBSD: misc.c,v 1.13 2009/04/25 05:11:37 lukem Exp $);
+__RCSID($NetBSD: misc.c,v 1.14 2009/10/22 15:53:19 seanb Exp $);
 #endif
 
 
@@ -96,7 +96,7 @@
 		return NULL;
 	len = strlen(s)+1;
 	p = alloc(len, ap);
-	strlcpy(p, s, len+1);
+	strlcpy(p, s, len);
 	return (p);
 }
 



CVS commit: src/usr.sbin/inetd

2009-10-22 Thread Jochen Kunz
Module Name:src
Committed By:   jkunz
Date:   Thu Oct 22 16:34:27 UTC 2009

Modified Files:
src/usr.sbin/inetd: Makefile inetd.8 inetd.c

Log Message:
Add mDNS Service Directory support to inetd(8).
inetd(8) can now advertize services in the mDNS-SD.
(Per service configuration option in inetd.conf(5).)


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/usr.sbin/inetd/Makefile
cvs rdiff -u -r1.52 -r1.53 src/usr.sbin/inetd/inetd.8
cvs rdiff -u -r1.113 -r1.114 src/usr.sbin/inetd/inetd.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.sbin/inetd/Makefile
diff -u src/usr.sbin/inetd/Makefile:1.21 src/usr.sbin/inetd/Makefile:1.22
--- src/usr.sbin/inetd/Makefile:1.21	Mon May 28 12:06:35 2007
+++ src/usr.sbin/inetd/Makefile	Thu Oct 22 16:34:27 2009
@@ -1,5 +1,5 @@
 #	from: @(#)Makefile	8.1 (Berkeley) 6/6/93
-#	$NetBSD: Makefile,v 1.21 2007/05/28 12:06:35 tls Exp $
+#	$NetBSD: Makefile,v 1.22 2009/10/22 16:34:27 jkunz Exp $
 
 .include bsd.own.mk
 
@@ -20,6 +20,12 @@
 CPPFLAGS+=-DINET6
 .endif
 
+.if (${MKMDNS} != no)
+CPPFLAGS+=-DMDNS
+LDADD+= -ldns_sd
+DPADD+=	${LIBDNS_SD}
+.endif
+
 CPPFLAGS+=-DIPSEC
 SRCS+=	ipsec.c
 LDADD+= -lipsec

Index: src/usr.sbin/inetd/inetd.8
diff -u src/usr.sbin/inetd/inetd.8:1.52 src/usr.sbin/inetd/inetd.8:1.53
--- src/usr.sbin/inetd/inetd.8:1.52	Tue Jul 14 08:24:15 2009
+++ src/usr.sbin/inetd/inetd.8	Thu Oct 22 16:34:27 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: inetd.8,v 1.52 2009/07/14 08:24:15 wiz Exp $
+.\	$NetBSD: inetd.8,v 1.53 2009/10/22 16:34:27 jkunz Exp $
 .\
 .\ Copyright (c) 1998 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -118,7 +118,7 @@
 [addr:]service-name
 socket-type[:accept_filter]
 protocol[,sndbuf=size][,rcvbuf=size]
-wait/nowait[:max]
+[mdns,]wait/nowait[:max]
 user[:group]
 server-program
 server program arguments
@@ -132,7 +132,7 @@
 service-name/version
 socket-type
 rpc/protocol[,sndbuf=size][,rcvbuf=size]
-wait/nowait[:max]
+[mdns,]wait/nowait[:max]
 user[:group]
 server-program
 server program arguments
@@ -145,7 +145,7 @@
 path
 socket-type
 unix[,sndbuf=size][,rcvbuf=size]
-wait/nowait[:max]
+[mdns,]wait/nowait[:max]
 user[:group]
 server-program
 server program arguments
@@ -279,6 +279,16 @@
 Socket buffer sizes may be specified for all
 services and protocols except for tcpmux services.
 .Pp
+If the
+.Em mdns
+option is present then
+.Nm
+advertises the service in the mDNS Service Directory.
+.Xr mdnsd 8
+needs to run for this to work. Note that mDNS does not distinguish IPv4 and
+IPv6. If a service is enabled for IPv6 only and IPv4 addresses are configured
+on the affected interface, the service will be advertized for IPv4 and IPv6.
+.Pp
 The
 .Em wait/nowait
 entry is used to tell

Index: src/usr.sbin/inetd/inetd.c
diff -u src/usr.sbin/inetd/inetd.c:1.113 src/usr.sbin/inetd/inetd.c:1.114
--- src/usr.sbin/inetd/inetd.c:1.113	Mon Jul 13 19:05:41 2009
+++ src/usr.sbin/inetd/inetd.c	Thu Oct 22 16:34:27 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: inetd.c,v 1.113 2009/07/13 19:05:41 roy Exp $	*/
+/*	$NetBSD: inetd.c,v 1.114 2009/10/22 16:34:27 jkunz Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2003 The NetBSD Foundation, Inc.
@@ -66,7 +66,7 @@
 #if 0
 static char sccsid[] = @(#)inetd.c	8.4 (Berkeley) 4/13/94;
 #else
-__RCSID($NetBSD: inetd.c,v 1.113 2009/07/13 19:05:41 roy Exp $);
+__RCSID($NetBSD: inetd.c,v 1.114 2009/10/22 16:34:27 jkunz Exp $);
 #endif
 #endif /* not lint */
 
@@ -98,7 +98,8 @@
  *	socket type[:accf[,arg]]	stream/dgram/raw/rdm/seqpacket,
 	only stream can name an accept filter
  *	protocol			must be in /etc/protocols
- *	wait/nowait[:max]		single-threaded/multi-threaded, max #
+ *	[mdns,]wait/nowait[:max]	single-threaded/multi-threaded, max #
+ *	if mdns register service in mDNS-SD
  *	user[:group]			user/group to run daemon as
  *	server program			full path name
  *	server program arguments	maximum of MAXARGS (20)
@@ -107,7 +108,8 @@
  *  service name/versionmust be in /etc/rpc
  *	socket type			stream/dgram/raw/rdm/seqpacket
  *	protocol			must be in /etc/protocols
- *	wait/nowait[:max]		single-threaded/multi-threaded
+ *	[mdns,]wait/nowait[:max]	single-threaded/multi-threaded
+ *	if mdns register service in mDNS-SD
  *	user[:group]			user to run daemon as
  *	server program			full path name
  *	server program arguments	maximum of MAXARGS (20)
@@ -255,6 +257,10 @@
 int deny_severity = LIBWRAP_DENY_FACILITY|LIBWRAP_DENY_SEVERITY;
 #endif
 
+#ifdef MDNS
+#include dns_sd.h
+#endif /* MDNS */
+
 #define	TOOMANY		40		/* don't start more than TOOMANY */
 #define	CNT_INTVL	60		/* servers in CNT_INTVL sec. */
 #define	RETRYTIME	(60*10)		/* retry after bind or server fail */
@@ -320,6 +326,7 @@
 	} se_un;			/* bound address */
 #define se_ctrladdr	se_un.se_un_ctrladdr
 #define se_ctrladdr_in	se_un.se_un_ctrladdr_in
+#define se_ctrladdr_in6	se_un.se_un_ctrladdr_in6
 #define se_ctrladdr_un	

CVS commit: src/sys/dev/pcmcia

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Thu Oct 22 18:47:57 UTC 2009

Modified Files:
src/sys/dev/pcmcia: if_tr_pcmcia.c

Log Message:
Drop 3rd and 4th clauses.  Approved by soren@ and Onno van der Linden
(copyright holders).


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/pcmcia/if_tr_pcmcia.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/dev/pcmcia/if_tr_pcmcia.c
diff -u src/sys/dev/pcmcia/if_tr_pcmcia.c:1.23 src/sys/dev/pcmcia/if_tr_pcmcia.c:1.24
--- src/sys/dev/pcmcia/if_tr_pcmcia.c:1.23	Tue May 12 14:42:18 2009
+++ src/sys/dev/pcmcia/if_tr_pcmcia.c	Thu Oct 22 18:47:56 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_tr_pcmcia.c,v 1.23 2009/05/12 14:42:18 cegger Exp $	*/
+/*	$NetBSD: if_tr_pcmcia.c,v 1.24 2009/10/22 18:47:56 snj Exp $	*/
 
 /*
  * Copyright (c) 2000 Soren S. Jorvang.  All rights reserved.
@@ -12,12 +12,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *must display the following acknowledgement:
- *  This product includes software developed by Soren S. Jorvang.
- *  This product includes software developed by Onno van der Linden.
- * 4. The name of the author may not be used to endorse or promote products
- *derived from this software without specific prior written permission.
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
@@ -41,7 +35,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: if_tr_pcmcia.c,v 1.23 2009/05/12 14:42:18 cegger Exp $);
+__KERNEL_RCSID(0, $NetBSD: if_tr_pcmcia.c,v 1.24 2009/10/22 18:47:56 snj Exp $);
 
 #include sys/param.h
 #include sys/systm.h



CVS commit: src/distrib/notes/common

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Thu Oct 22 18:59:30 UTC 2009

Modified Files:
src/distrib/notes/common: legal.common

Log Message:
Remove soren@ and Onno van der Linden's acknowledgements.


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/distrib/notes/common/legal.common

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

Modified files:

Index: src/distrib/notes/common/legal.common
diff -u src/distrib/notes/common/legal.common:1.68 src/distrib/notes/common/legal.common:1.69
--- src/distrib/notes/common/legal.common:1.68	Thu Oct 22 01:38:53 2009
+++ src/distrib/notes/common/legal.common	Thu Oct 22 18:59:30 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: legal.common,v 1.68 2009/10/22 01:38:53 snj Exp $
+.\	$NetBSD: legal.common,v 1.69 2009/10/22 18:59:30 snj Exp $
 .\
 .\ Copyright (c) 1999-2004 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -377,8 +377,6 @@
 .It
 This product includes software developed by Niklas Hallqvist.
 .It
-This product includes software developed by Onno van der Linden.
-.It
 This product includes software developed by Paul Kranenburg.
 .It
 This product includes software developed by Paul Mackerras.
@@ -417,8 +415,6 @@
 This product includes software developed by Softweyr LLC, the
 University of California, Berkeley, and its contributors.
 .It
-This product includes software developed by Soren S. Jorvang.
-.It
 This product includes software developed by Stephan Thesing.
 .It
 This product includes software developed by Steve Woodford.



CVS commit: src/sys/arch/i386/stand/netboot

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Thu Oct 22 19:10:43 UTC 2009

Modified Files:
src/sys/arch/i386/stand/netboot: dev_net.c dev_net.h

Log Message:
Drop 3rd and 4th clauses.  OK gwr@ drochner@ (copyright holders).


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/i386/stand/netboot/dev_net.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/i386/stand/netboot/dev_net.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/arch/i386/stand/netboot/dev_net.c
diff -u src/sys/arch/i386/stand/netboot/dev_net.c:1.14 src/sys/arch/i386/stand/netboot/dev_net.c:1.15
--- src/sys/arch/i386/stand/netboot/dev_net.c:1.14	Sat Mar 14 21:04:10 2009
+++ src/sys/arch/i386/stand/netboot/dev_net.c	Thu Oct 22 19:10:42 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: dev_net.c,v 1.14 2009/03/14 21:04:10 dsl Exp $	 */
+/*	$NetBSD: dev_net.c,v 1.15 2009/10/22 19:10:42 snj Exp $	 */
 
 /*
  * Copyright (c) 1995 Gordon W. Ross
@@ -14,11 +14,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. The name of the author may not be used to endorse or promote products
- *derived from this software without specific prior written permission.
- * 4. All advertising materials mentioning features or use of this software
- *must display the following acknowledgement:
- *  This product includes software developed by Gordon W. Ross
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES

Index: src/sys/arch/i386/stand/netboot/dev_net.h
diff -u src/sys/arch/i386/stand/netboot/dev_net.h:1.2 src/sys/arch/i386/stand/netboot/dev_net.h:1.3
--- src/sys/arch/i386/stand/netboot/dev_net.h:1.2	Sat Mar 14 14:46:00 2009
+++ src/sys/arch/i386/stand/netboot/dev_net.h	Thu Oct 22 19:10:42 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: dev_net.h,v 1.2 2009/03/14 14:46:00 dsl Exp $	*/
+/*	$NetBSD: dev_net.h,v 1.3 2009/10/22 19:10:42 snj Exp $	*/
 
 /*
  * Copyright (c) 1995 Gordon W. Ross
@@ -14,11 +14,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. The name of the author may not be used to endorse or promote products
- *derived from this software without specific prior written permission.
- * 4. All advertising materials mentioning features or use of this software
- *must display the following acknowledgement:
- *  This product includes software developed by Gordon W. Ross
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES



CVS commit: src/sys/dev

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Thu Oct 22 20:15:45 UTC 2009

Modified Files:
src/sys/dev: md.c

Log Message:
Drop 3rd and 4th clauses.  OK gwr@ leo@ (copyright holders).


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 src/sys/dev/md.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/dev/md.c
diff -u src/sys/dev/md.c:1.60 src/sys/dev/md.c:1.61
--- src/sys/dev/md.c:1.60	Tue Jul 28 17:55:27 2009
+++ src/sys/dev/md.c	Thu Oct 22 20:15:45 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: md.c,v 1.60 2009/07/28 17:55:27 dyoung Exp $	*/
+/*	$NetBSD: md.c,v 1.61 2009/10/22 20:15:45 snj Exp $	*/
 
 /*
  * Copyright (c) 1995 Gordon W. Ross, Leo Weppelman.
@@ -12,12 +12,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. The name of the author may not be used to endorse or promote products
- *derived from this software without specific prior written permission.
- * 4. All advertising materials mentioning features or use of this software
- *must display the following acknowledgement:
- *  This product includes software developed by
- *			Gordon W. Ross and Leo Weppelman.
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
@@ -46,7 +40,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: md.c,v 1.60 2009/07/28 17:55:27 dyoung Exp $);
+__KERNEL_RCSID(0, $NetBSD: md.c,v 1.61 2009/10/22 20:15:45 snj Exp $);
 
 #include opt_md.h
 #include opt_tftproot.h



CVS commit: src/distrib/notes/common

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Thu Oct 22 20:31:24 UTC 2009

Modified Files:
src/distrib/notes/common: legal.common

Log Message:
Remove attribution for Gordon W. Ross and Leo Weppelman.


To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 src/distrib/notes/common/legal.common

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

Modified files:

Index: src/distrib/notes/common/legal.common
diff -u src/distrib/notes/common/legal.common:1.69 src/distrib/notes/common/legal.common:1.70
--- src/distrib/notes/common/legal.common:1.69	Thu Oct 22 18:59:30 2009
+++ src/distrib/notes/common/legal.common	Thu Oct 22 20:31:24 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: legal.common,v 1.69 2009/10/22 18:59:30 snj Exp $
+.\	$NetBSD: legal.common,v 1.70 2009/10/22 20:31:24 snj Exp $
 .\
 .\ Copyright (c) 1999-2004 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -87,9 +87,6 @@
 David Jones and Gordon Ross
 .It
 This product includes software developed by
-Gordon W. Ross and Leo Weppelman.
-.It
-This product includes software developed by
 Hellmuth Michaelis and Joerg Wunsch
 .It
 This product includes software developed by



CVS commit: src/usr.sbin/inetd

2009-10-22 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Oct 22 21:43:28 UTC 2009

Modified Files:
src/usr.sbin/inetd: inetd.8

Log Message:
Bump date for mDNS support.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/usr.sbin/inetd/inetd.8

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

Modified files:

Index: src/usr.sbin/inetd/inetd.8
diff -u src/usr.sbin/inetd/inetd.8:1.53 src/usr.sbin/inetd/inetd.8:1.54
--- src/usr.sbin/inetd/inetd.8:1.53	Thu Oct 22 16:34:27 2009
+++ src/usr.sbin/inetd/inetd.8	Thu Oct 22 21:43:28 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: inetd.8,v 1.53 2009/10/22 16:34:27 jkunz Exp $
+.\	$NetBSD: inetd.8,v 1.54 2009/10/22 21:43:28 wiz Exp $
 .\
 .\ Copyright (c) 1998 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -57,7 +57,7 @@
 .\
 .\ from: @(#)inetd.8   8.4 (Berkeley) 6/1/94
 .\
-.Dd August 27, 2008
+.Dd October 22, 2009
 .Dt INETD 8
 .Os
 .Sh NAME
@@ -285,8 +285,9 @@
 .Nm
 advertises the service in the mDNS Service Directory.
 .Xr mdnsd 8
-needs to run for this to work. Note that mDNS does not distinguish IPv4 and
-IPv6. If a service is enabled for IPv6 only and IPv4 addresses are configured
+needs to run for this to work.
+Note that mDNS does not distinguish IPv4 and IPv6.
+If a service is enabled for IPv6 only and IPv4 addresses are configured
 on the affected interface, the service will be advertized for IPv4 and IPv6.
 .Pp
 The



CVS commit: src

2009-10-22 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Thu Oct 22 21:50:01 UTC 2009

Modified Files:
src/lib/libc/gen: bswap.3
src/sys/fs/nilfs: nilfs_bswap.h
src/sys/fs/udf: udf_bswap.h

Log Message:
Remove closes 3 and 4 from my copyright.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/lib/libc/gen/bswap.3
cvs rdiff -u -r1.1 -r1.2 src/sys/fs/nilfs/nilfs_bswap.h
cvs rdiff -u -r1.7 -r1.8 src/sys/fs/udf/udf_bswap.h

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

Modified files:

Index: src/lib/libc/gen/bswap.3
diff -u src/lib/libc/gen/bswap.3:1.10 src/lib/libc/gen/bswap.3:1.11
--- src/lib/libc/gen/bswap.3:1.10	Mon Dec 26 19:40:14 2005
+++ src/lib/libc/gen/bswap.3	Thu Oct 22 21:50:01 2009
@@ -1,4 +1,4 @@
-.\ $NetBSD: bswap.3,v 1.10 2005/12/26 19:40:14 perry Exp $
+.\ $NetBSD: bswap.3,v 1.11 2009/10/22 21:50:01 bouyer Exp $
 .\
 .\ Copyright (c) 1998 Manuel Bouyer.
 .\
@@ -10,8 +10,6 @@
 .\ 2. Redistributions in binary form must reproduce the above copyright
 .\notice, this list of conditions and the following disclaimer in the
 .\documentation and/or other materials provided with the distribution.
-.\ 3. The name of the author may not be used to endorse or promote products
-.\derived from this software without specific prior written permission.
 .\
 .\ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 .\ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES

Index: src/sys/fs/nilfs/nilfs_bswap.h
diff -u src/sys/fs/nilfs/nilfs_bswap.h:1.1 src/sys/fs/nilfs/nilfs_bswap.h:1.2
--- src/sys/fs/nilfs/nilfs_bswap.h:1.1	Sat Jul 18 16:31:42 2009
+++ src/sys/fs/nilfs/nilfs_bswap.h	Thu Oct 22 21:50:01 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: nilfs_bswap.h,v 1.1 2009/07/18 16:31:42 reinoud Exp $	*/
+/* $NetBSD: nilfs_bswap.h,v 1.2 2009/10/22 21:50:01 bouyer Exp $	*/
 
 /*
  * Copyright (c) 1998 Manuel Bouyer.
@@ -11,13 +11,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *must display the following acknowledgement:
- *	This product includes software developed by the University of
- *	California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
- *may be used to endorse or promote products derived from this software
- *without specific prior written permission.
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES

Index: src/sys/fs/udf/udf_bswap.h
diff -u src/sys/fs/udf/udf_bswap.h:1.7 src/sys/fs/udf/udf_bswap.h:1.8
--- src/sys/fs/udf/udf_bswap.h:1.7	Mon May 18 21:09:54 2009
+++ src/sys/fs/udf/udf_bswap.h	Thu Oct 22 21:50:01 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_bswap.h,v 1.7 2009/05/18 21:09:54 reinoud Exp $	*/
+/* $NetBSD: udf_bswap.h,v 1.8 2009/10/22 21:50:01 bouyer Exp $	*/
 
 /*
  * Copyright (c) 1998 Manuel Bouyer.
@@ -11,13 +11,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *must display the following acknowledgement:
- *	This product includes software developed by the University of
- *	California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
- *may be used to endorse or promote products derived from this software
- *without specific prior written permission.
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES



CVS commit: src/share/mk

2009-10-22 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Thu Oct 22 21:55:34 UTC 2009

Modified Files:
src/share/mk: bsd.own.mk

Log Message:
Switch powerpc to binutils 2.19.


To generate a diff of this commit:
cvs rdiff -u -r1.588 -r1.589 src/share/mk/bsd.own.mk

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

Modified files:

Index: src/share/mk/bsd.own.mk
diff -u src/share/mk/bsd.own.mk:1.588 src/share/mk/bsd.own.mk:1.589
--- src/share/mk/bsd.own.mk:1.588	Wed Oct 21 22:36:28 2009
+++ src/share/mk/bsd.own.mk	Thu Oct 22 21:55:34 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: bsd.own.mk,v 1.588 2009/10/21 22:36:28 joerg Exp $
+#	$NetBSD: bsd.own.mk,v 1.589 2009/10/22 21:55:34 skrll Exp $
 
 .if !defined(_BSD_OWN_MK_)
 _BSD_OWN_MK_=1
@@ -55,6 +55,7 @@
 ${MACHINE_ARCH} == hppa || \
 ${MACHINE_ARCH} == i386 || \
 ${MACHINE_ARCH} == m68k || \
+${MACHINE_ARCH} == powerpc || \
 ${MACHINE_ARCH} == sh3eb || ${MACHINE_ARCH} == sh3el || \
 ${MACHINE_ARCH} == sparc || \
 ${MACHINE_ARCH} == sparc64 || \



CVS commit: src/libexec/ld.elf_so/arch/powerpc

2009-10-22 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Thu Oct 22 21:56:14 UTC 2009

Modified Files:
src/libexec/ld.elf_so/arch/powerpc: Makefile.inc

Log Message:
Fix start symbol for newer binutils.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/libexec/ld.elf_so/arch/powerpc/Makefile.inc

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

Modified files:

Index: src/libexec/ld.elf_so/arch/powerpc/Makefile.inc
diff -u src/libexec/ld.elf_so/arch/powerpc/Makefile.inc:1.10 src/libexec/ld.elf_so/arch/powerpc/Makefile.inc:1.11
--- src/libexec/ld.elf_so/arch/powerpc/Makefile.inc:1.10	Sat Jun  4 16:17:17 2005
+++ src/libexec/ld.elf_so/arch/powerpc/Makefile.inc	Thu Oct 22 21:56:13 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.inc,v 1.10 2005/06/04 16:17:17 lukem Exp $
+#	$NetBSD: Makefile.inc,v 1.11 2009/10/22 21:56:13 skrll Exp $
 
 SRCS+=		rtld_start.S ppc_reloc.c
 
@@ -7,5 +7,5 @@
 
 CPPFLAGS+=	-DELFSIZE=32
 
-LDFLAGS+=	-Wl,-e,.rtld_start
+LDFLAGS+=	-Wl,-e,_rtld_start
 LDFLAGS+=	-Wl,--script,${.CURDIR}/arch/powerpc/ld.so.script



CVS commit: src/sys

2009-10-22 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Oct 22 22:28:57 UTC 2009

Modified Files:
src/sys/arch/ia64/ia64: vm_machdep.c
src/sys/arch/ia64/include: cpu.h
src/sys/kern: kern_exit.c kern_lwp.c
src/sys/sys: proc.h

Log Message:
Avoid #ifndef __NO_CPU_LWP_FREE, only ia64 is missing cpu_lwp_free
routines and it can/should provide stubs.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/ia64/ia64/vm_machdep.c
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/ia64/include/cpu.h
cvs rdiff -u -r1.222 -r1.223 src/sys/kern/kern_exit.c
cvs rdiff -u -r1.134 -r1.135 src/sys/kern/kern_lwp.c
cvs rdiff -u -r1.291 -r1.292 src/sys/sys/proc.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/arch/ia64/ia64/vm_machdep.c
diff -u src/sys/arch/ia64/ia64/vm_machdep.c:1.7 src/sys/arch/ia64/ia64/vm_machdep.c:1.8
--- src/sys/arch/ia64/ia64/vm_machdep.c:1.7	Wed Oct 21 21:12:00 2009
+++ src/sys/arch/ia64/ia64/vm_machdep.c	Thu Oct 22 22:28:57 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: vm_machdep.c,v 1.7 2009/10/21 21:12:00 rmind Exp $	*/
+/*	$NetBSD: vm_machdep.c,v 1.8 2009/10/22 22:28:57 rmind Exp $	*/
 
 /*
  * Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -49,7 +49,17 @@
 void
 cpu_lwp_free(struct lwp *l, int proc)
 {
-printf(%s: not yet\n, __func__);
+
+	/* XXX: Not yet. */
+	(void)l;
+	(void)proc;
+}
+
+void
+cpu_lwp_free2(struct lwp *l)
+{
+
+	(void)l;
 }
 
 /*

Index: src/sys/arch/ia64/include/cpu.h
diff -u src/sys/arch/ia64/include/cpu.h:1.8 src/sys/arch/ia64/include/cpu.h:1.9
--- src/sys/arch/ia64/include/cpu.h:1.8	Mon Jul 20 04:41:37 2009
+++ src/sys/arch/ia64/include/cpu.h	Thu Oct 22 22:28:57 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: cpu.h,v 1.8 2009/07/20 04:41:37 kiyohara Exp $	*/
+/*	$NetBSD: cpu.h,v 1.9 2009/10/22 22:28:57 rmind Exp $	*/
 
 /*-
  * Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -175,8 +175,5 @@
 	asm (hint @pause ::: memory);
 }
 
-/* XXX: revisit later */
-#define __NO_CPU_LWP_FREE
-
 #endif /* _KERNEL_ */
 #endif /* _IA64_CPU_H */

Index: src/sys/kern/kern_exit.c
diff -u src/sys/kern/kern_exit.c:1.222 src/sys/kern/kern_exit.c:1.223
--- src/sys/kern/kern_exit.c:1.222	Sun Jun 28 11:42:43 2009
+++ src/sys/kern/kern_exit.c	Thu Oct 22 22:28:57 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_exit.c,v 1.222 2009/06/28 11:42:43 yamt Exp $	*/
+/*	$NetBSD: kern_exit.c,v 1.223 2009/10/22 22:28:57 rmind Exp $	*/
 
 /*-
  * Copyright (c) 1998, 1999, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: kern_exit.c,v 1.222 2009/06/28 11:42:43 yamt Exp $);
+__KERNEL_RCSID(0, $NetBSD: kern_exit.c,v 1.223 2009/10/22 22:28:57 rmind Exp $);
 
 #include opt_ktrace.h
 #include opt_perfctrs.h
@@ -559,9 +559,7 @@
 	 * resources.  This must be done before uvm_lwp_exit(), in
 	 * case these resources are in the PCB.
 	 */
-#ifndef __NO_CPU_LWP_FREE
 	cpu_lwp_free(l, 1);
-#endif
 	pmap_deactivate(l);
 
 	/* This process no longer needs to hold the kernel lock. */

Index: src/sys/kern/kern_lwp.c
diff -u src/sys/kern/kern_lwp.c:1.134 src/sys/kern/kern_lwp.c:1.135
--- src/sys/kern/kern_lwp.c:1.134	Wed Oct 21 21:12:06 2009
+++ src/sys/kern/kern_lwp.c	Thu Oct 22 22:28:57 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_lwp.c,v 1.134 2009/10/21 21:12:06 rmind Exp $	*/
+/*	$NetBSD: kern_lwp.c,v 1.135 2009/10/22 22:28:57 rmind Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2006, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -209,7 +209,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: kern_lwp.c,v 1.134 2009/10/21 21:12:06 rmind Exp $);
+__KERNEL_RCSID(0, $NetBSD: kern_lwp.c,v 1.135 2009/10/22 22:28:57 rmind Exp $);
 
 #include opt_ddb.h
 #include opt_lockdebug.h
@@ -846,9 +846,7 @@
 	 *
 	 * Free MD LWP resources.
 	 */
-#ifndef __NO_CPU_LWP_FREE
 	cpu_lwp_free(l, 0);
-#endif
 
 	if (current) {
 		pmap_deactivate(l);
@@ -953,9 +951,8 @@
 		pool_cache_put(turnstile_cache, l-l_ts);
 	if (l-l_name != NULL)
 		kmem_free(l-l_name, MAXCOMLEN);
-#ifndef __NO_CPU_LWP_FREE
+
 	cpu_lwp_free2(l);
-#endif
 	uvm_lwp_exit(l);
 
 	KASSERT(SLIST_EMPTY(l-l_pi_lenders));

Index: src/sys/sys/proc.h
diff -u src/sys/sys/proc.h:1.291 src/sys/sys/proc.h:1.292
--- src/sys/sys/proc.h:1.291	Fri Oct  2 22:38:45 2009
+++ src/sys/sys/proc.h	Thu Oct 22 22:28:57 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: proc.h,v 1.291 2009/10/02 22:38:45 elad Exp $	*/
+/*	$NetBSD: proc.h,v 1.292 2009/10/22 22:28:57 rmind Exp $	*/
 
 /*-
  * Copyright (c) 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -495,12 +495,8 @@
 int	pgid_in_session(struct proc *, pid_t);
 void	cpu_lwp_fork(struct lwp *, struct lwp *, void *, size_t,
 	void (*)(void *), void *);
-#ifndef cpu_lwp_free
 void	cpu_lwp_free(struct lwp *, int);
-#ifndef cpu_lwp_free2
 void	cpu_lwp_free2(struct lwp *);
-#endif
-#endif
 
 #ifdef __HAVE_SYSCALL_INTERN
 void	syscall_intern(struct proc *);



CVS commit: src

2009-10-22 Thread Ty Sarna
Module Name:src
Committed By:   tsarna
Date:   Thu Oct 22 23:04:59 UTC 2009

Modified Files:
src/distrib/sets/lists/man: mi
Removed Files:
src/share/man/man8/man8.i386: w95boot.8

Log Message:
Remove w95boot(8) manpage, long past being useful.


To generate a diff of this commit:
cvs rdiff -u -r1.1166 -r1.1167 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.10 -r0 src/share/man/man8/man8.i386/w95boot.8

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

Modified files:

Index: src/distrib/sets/lists/man/mi
diff -u src/distrib/sets/lists/man/mi:1.1166 src/distrib/sets/lists/man/mi:1.1167
--- src/distrib/sets/lists/man/mi:1.1166	Wed Oct 21 22:59:06 2009
+++ src/distrib/sets/lists/man/mi	Thu Oct 22 23:04:59 2009
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1166 2009/10/21 22:59:06 joerg Exp $
+# $NetBSD: mi,v 1.1167 2009/10/22 23:04:59 tsarna Exp $
 #
 # Note: don't delete entries from here - mark them as obsolete instead.
 #
@@ -2165,7 +2165,7 @@
 ./usr/share/man/cat8/i386/reboot.0		man-obsolete		obsolete
 ./usr/share/man/cat8/i386/reboot_i386.0		man-obsolete		obsolete
 ./usr/share/man/cat8/i386/vgaio.0		man-obsolete		obsolete
-./usr/share/man/cat8/i386/w95boot.0		man-sys-catman		.cat
+./usr/share/man/cat8/i386/w95boot.0		man-sys-catman		.cat,obsolete
 ./usr/share/man/cat8/i386/zzz.0			man-obsolete		obsolete
 ./usr/share/man/cat8/ibmnws/MAKEDEV.0		man-obsolete		obsolete
 ./usr/share/man/cat8/identd.0			man-netutil-catman	.cat
@@ -4609,7 +4609,7 @@
 ./usr/share/man/html8/i386/multiboot.html	man-sys-htmlman		html
 ./usr/share/man/html8/i386/ndiscvt.html		man-netutil-htmlman	html
 ./usr/share/man/html8/i386/pxeboot.html		man-sys-htmlman		html
-./usr/share/man/html8/i386/w95boot.html		man-sys-htmlman		html
+./usr/share/man/html8/i386/w95boot.html		man-sys-htmlman		html,obsolete
 ./usr/share/man/html8/identd.html		man-netutil-htmlman	html
 ./usr/share/man/html8/ifconfig.html		man-netutil-htmlman	html
 ./usr/share/man/html8/ifmcstat.html		man-netutil-htmlman	inet6,html
@@ -7194,7 +7194,7 @@
 ./usr/share/man/man8/i386/reboot.8		man-obsolete		obsolete
 ./usr/share/man/man8/i386/reboot_i386.8		man-obsolete		obsolete
 ./usr/share/man/man8/i386/vgaio.8		man-obsolete		obsolete
-./usr/share/man/man8/i386/w95boot.8		man-sys-man		.man
+./usr/share/man/man8/i386/w95boot.8		man-sys-man		.man,obsolete
 ./usr/share/man/man8/i386/zzz.8			man-obsolete		obsolete
 ./usr/share/man/man8/ibmnws/MAKEDEV.8		man-obsolete		obsolete
 ./usr/share/man/man8/ibmnws/makedev.8		man-obsolete		obsolete



CVS commit: src/lib/libutil

2009-10-22 Thread Ty Sarna
Module Name:src
Committed By:   tsarna
Date:   Thu Oct 22 23:08:03 UTC 2009

Modified Files:
src/lib/libutil: ttyaction.3

Log Message:
Update my email address to one I have used in this millenium.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/lib/libutil/ttyaction.3

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

Modified files:

Index: src/lib/libutil/ttyaction.3
diff -u src/lib/libutil/ttyaction.3:1.13 src/lib/libutil/ttyaction.3:1.14
--- src/lib/libutil/ttyaction.3:1.13	Wed Apr 30 13:10:52 2008
+++ src/lib/libutil/ttyaction.3	Thu Oct 22 23:08:03 2009
@@ -1,4 +1,4 @@
-.\ $NetBSD: ttyaction.3,v 1.13 2008/04/30 13:10:52 martin Exp $
+.\ $NetBSD: ttyaction.3,v 1.14 2009/10/22 23:08:03 tsarna Exp $
 .\
 .\ Copyright (c) 1996 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -91,7 +91,7 @@
 .An Chris G. Demetriou
 .Aq c...@netbsd.org ,
 .An Ty Sarna
-.Aq tsa...@endicor.com .
+.Aq tsa...@netbsd.org .
 .Sh BUGS
 There should be some
 .Em other



CVS commit: src/share/man/man4

2009-10-22 Thread Ty Sarna
Module Name:src
Committed By:   tsarna
Date:   Thu Oct 22 23:10:22 UTC 2009

Modified Files:
src/share/man/man4: auvia.4

Log Message:
Take credit for original work.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/share/man/man4/auvia.4

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/man4/auvia.4
diff -u src/share/man/man4/auvia.4:1.7 src/share/man/man4/auvia.4:1.8
--- src/share/man/man4/auvia.4:1.7	Wed Apr 30 13:10:53 2008
+++ src/share/man/man4/auvia.4	Thu Oct 22 23:10:22 2009
@@ -1,4 +1,4 @@
-.\ $NetBSD: auvia.4,v 1.7 2008/04/30 13:10:53 martin Exp $
+.\ $NetBSD: auvia.4,v 1.8 2009/10/22 23:10:22 tsarna Exp $
 .\
 .\ Copyright (c) 2000 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -49,5 +49,5 @@
 .Sh HISTORY
 The
 .Nm
-device driver appeared in
+driver was originally written by Tyler C. Sarna for
 .Nx 1.5 .



CVS commit: src/sys

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 00:39:31 UTC 2009

Modified Files:
src/sys/arch/arm/at91: at91_bus_dma.c
src/sys/arch/arm/ep93xx: ep93xx_busdma.c ep93xx_intr.h ep93xx_space.c
ep93xxreg.h ep93xxvar.h epclk.c epclkreg.h epcomreg.h epcomvar.h
epe.c epereg.h epevar.h epsoc.c epsocvar.h
src/sys/arch/evbarm/stand/board: epcom.c ts7200.c
src/sys/arch/evbarm/tsarm: tsarmreg.h tspld.c
src/sys/dev/isa: tsdioreg.h tsdiovar.h

Log Message:
Switch to a 2 clause license.  Approved by joff@ (copyright holder).


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/at91/at91_bus_dma.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/ep93xx/ep93xx_busdma.c \
src/sys/arch/arm/ep93xx/ep93xxvar.h src/sys/arch/arm/ep93xx/epclkreg.h \
src/sys/arch/arm/ep93xx/epcomreg.h src/sys/arch/arm/ep93xx/epsocvar.h
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/arm/ep93xx/ep93xx_intr.h \
src/sys/arch/arm/ep93xx/epevar.h
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/ep93xx/ep93xx_space.c \
src/sys/arch/arm/ep93xx/epcomvar.h src/sys/arch/arm/ep93xx/epereg.h
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/ep93xx/ep93xxreg.h
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/arm/ep93xx/epclk.c
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/arm/ep93xx/epe.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/ep93xx/epsoc.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/evbarm/stand/board/epcom.c
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/evbarm/stand/board/ts7200.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/evbarm/tsarm/tsarmreg.h
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/evbarm/tsarm/tspld.c
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/isa/tsdioreg.h \
src/sys/dev/isa/tsdiovar.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/arch/arm/at91/at91_bus_dma.c
diff -u src/sys/arch/arm/at91/at91_bus_dma.c:1.2 src/sys/arch/arm/at91/at91_bus_dma.c:1.3
--- src/sys/arch/arm/at91/at91_bus_dma.c:1.2	Thu Jul  3 01:15:38 2008
+++ src/sys/arch/arm/at91/at91_bus_dma.c	Fri Oct 23 00:39:29 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: at91_bus_dma.c,v 1.2 2008/07/03 01:15:38 matt Exp $ */
+/*	$NetBSD: at91_bus_dma.c,v 1.3 2009/10/23 00:39:29 snj Exp $ */
 
 /*
  * Copyright (c) 2004 Jesse Off
@@ -12,9 +12,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. Neither the name of The Fujitsu Component Limited nor the name of
- *Genetec corporation may not be used to endorse or promote products
- *derived from this software without specific prior written permission.
  *
  * THIS SOFTWARE IS PROVIDED BY FUJITSU COMPONENT LIMITED AND GENETEC
  * CORPORATION ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
@@ -36,7 +33,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: at91_bus_dma.c,v 1.2 2008/07/03 01:15:38 matt Exp $);
+__KERNEL_RCSID(0, $NetBSD: at91_bus_dma.c,v 1.3 2009/10/23 00:39:29 snj Exp $);
 
 #include sys/param.h
 #include sys/types.h

Index: src/sys/arch/arm/ep93xx/ep93xx_busdma.c
diff -u src/sys/arch/arm/ep93xx/ep93xx_busdma.c:1.2 src/sys/arch/arm/ep93xx/ep93xx_busdma.c:1.3
--- src/sys/arch/arm/ep93xx/ep93xx_busdma.c:1.2	Sun Dec 11 12:16:45 2005
+++ src/sys/arch/arm/ep93xx/ep93xx_busdma.c	Fri Oct 23 00:39:30 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: ep93xx_busdma.c,v 1.2 2005/12/11 12:16:45 christos Exp $ */
+/*	$NetBSD: ep93xx_busdma.c,v 1.3 2009/10/23 00:39:30 snj Exp $ */
 
 /*
  * Copyright (c) 2004 Jesse Off
@@ -12,9 +12,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. Neither the name of The Fujitsu Component Limited nor the name of
- *Genetec corporation may not be used to endorse or promote products
- *derived from this software without specific prior written permission.
  *
  * THIS SOFTWARE IS PROVIDED BY FUJITSU COMPONENT LIMITED AND GENETEC
  * CORPORATION ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
@@ -36,7 +33,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: ep93xx_busdma.c,v 1.2 2005/12/11 12:16:45 christos Exp $);
+__KERNEL_RCSID(0, $NetBSD: ep93xx_busdma.c,v 1.3 2009/10/23 00:39:30 snj Exp $);
 
 #include sys/param.h
 #include sys/types.h
Index: src/sys/arch/arm/ep93xx/ep93xxvar.h
diff -u src/sys/arch/arm/ep93xx/ep93xxvar.h:1.2 src/sys/arch/arm/ep93xx/ep93xxvar.h:1.3
--- src/sys/arch/arm/ep93xx/ep93xxvar.h:1.2	Sun Dec 11 12:16:45 2005
+++ src/sys/arch/arm/ep93xx/ep93xxvar.h	Fri Oct 23 00:39:30 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: ep93xxvar.h,v 1.2 2005/12/11 12:16:45 christos Exp $ */
+/*	$NetBSD: ep93xxvar.h,v 1.3 2009/10/23 00:39:30 snj Exp $ */
 /*
  * Copyright (c) 2004 Jesse Off
  * All rights 

CVS commit: src/sys

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 02:32:34 UTC 2009

Modified Files:
src/sys/arch/next68k/dev: bmapreg.h if_xereg.h
src/sys/arch/xen/i386: npx_hv.c
src/sys/arch/xen/include: evtchn.h if_xennetvar.h kernfs_machdep.h
xbdvar.h xenfunc.h xenpmap.h
src/sys/arch/xen/x86: hypervisor_machdep.c x86_xpmap.c xenfunc.c
src/sys/arch/xen/xen: clock.c hypervisor.c if_xennet_xenbus.c privcmd.c
xen_debug.c xen_machdep.c xencons.c
src/sys/nfs: nfs_bootstatic.c

Log Message:
Remove 3rd and 4th clauses.  OK cl@ (copyright holder).


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/next68k/dev/bmapreg.h
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/next68k/dev/if_xereg.h
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/xen/i386/npx_hv.c
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/xen/include/evtchn.h
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/xen/include/if_xennetvar.h
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/xen/include/kernfs_machdep.h
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/xen/include/xbdvar.h
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/xen/include/xenfunc.h
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/xen/include/xenpmap.h
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/xen/x86/hypervisor_machdep.c
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/xen/x86/x86_xpmap.c
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/xen/x86/xenfunc.c
cvs rdiff -u -r1.51 -r1.52 src/sys/arch/xen/xen/clock.c
cvs rdiff -u -r1.49 -r1.50 src/sys/arch/xen/xen/hypervisor.c
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/xen/xen/if_xennet_xenbus.c \
src/sys/arch/xen/xen/privcmd.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/xen/xen/xen_debug.c \
src/sys/arch/xen/xen/xen_machdep.c
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/xen/xen/xencons.c
cvs rdiff -u -r1.7 -r1.8 src/sys/nfs/nfs_bootstatic.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/arch/next68k/dev/bmapreg.h
diff -u src/sys/arch/next68k/dev/bmapreg.h:1.2 src/sys/arch/next68k/dev/bmapreg.h:1.3
--- src/sys/arch/next68k/dev/bmapreg.h:1.2	Wed Sep 11 01:46:30 2002
+++ src/sys/arch/next68k/dev/bmapreg.h	Fri Oct 23 02:32:33 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: bmapreg.h,v 1.2 2002/09/11 01:46:30 mycroft Exp $	*/
+/*	$NetBSD: bmapreg.h,v 1.3 2009/10/23 02:32:33 snj Exp $	*/
 
 /* 
  * Copyright (c) 2002 Christian Limpach
@@ -12,11 +12,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *must display the following acknowledgement:
- *  This product includes software developed by Christian Limpach
- * 4. The name of the author may not be used to endorse or promote products
- *derived from this software without specific prior written permission
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES

Index: src/sys/arch/next68k/dev/if_xereg.h
diff -u src/sys/arch/next68k/dev/if_xereg.h:1.1 src/sys/arch/next68k/dev/if_xereg.h:1.2
--- src/sys/arch/next68k/dev/if_xereg.h:1.1	Wed Sep 11 01:46:31 2002
+++ src/sys/arch/next68k/dev/if_xereg.h	Fri Oct 23 02:32:33 2009
@@ -1,4 +1,4 @@
-/*  $NetBSD: if_xereg.h,v 1.1 2002/09/11 01:46:31 mycroft Exp $  */
+/*  $NetBSD: if_xereg.h,v 1.2 2009/10/23 02:32:33 snj Exp $  */
 
 /*
  * Copyright (c) 2002 Christian Limpach
@@ -12,11 +12,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.  
- * 3. All advertising materials mentioning features or use of this software  
- *must display the following acknowledgement:  
- *  This product includes software developed by Christian Limpach  
- * 4. The name of the author may not be used to endorse or promote products  
- *derived from this software without specific prior written permission  
  *  
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES  

Index: src/sys/arch/xen/i386/npx_hv.c
diff -u src/sys/arch/xen/i386/npx_hv.c:1.7 src/sys/arch/xen/i386/npx_hv.c:1.8
--- src/sys/arch/xen/i386/npx_hv.c:1.7	Fri Oct 24 18:02:58 2008
+++ src/sys/arch/xen/i386/npx_hv.c	Fri Oct 23 02:32:33 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: npx_hv.c,v 1.7 2008/10/24 18:02:58 jym Exp $	*/
+/*	$NetBSD: npx_hv.c,v 1.8 2009/10/23 02:32:33 snj Exp $	*/
 
 /*
  *
@@ -13,11 +13,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or 

CVS commit: src/distrib/notes

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 02:53:23 UTC 2009

Modified Files:
src/distrib/notes/amiga: legal
src/distrib/notes/common: legal.common

Log Message:
Remove Brad Pepers' acknowledgement.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/distrib/notes/amiga/legal
cvs rdiff -u -r1.70 -r1.71 src/distrib/notes/common/legal.common

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

Modified files:

Index: src/distrib/notes/amiga/legal
diff -u src/distrib/notes/amiga/legal:1.8 src/distrib/notes/amiga/legal:1.9
--- src/distrib/notes/amiga/legal:1.8	Mon May 20 23:48:42 2002
+++ src/distrib/notes/amiga/legal	Fri Oct 23 02:53:22 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: legal,v 1.8 2002/05/20 23:48:42 itojun Exp $
+.\	$NetBSD: legal,v 1.9 2009/10/23 02:53:22 snj Exp $
 .
 .It
 This product includes software developed by Tobias Abt.
@@ -17,8 +17,6 @@
 .It
 This product includes software developed by Kari Mettinen.
 .It
-This product includes software developed by Brad Pepers.
-.It
 This product includes software developed by Ignatios Souvatzis.
 .It
 This product includes software developed by Michael Teske.

Index: src/distrib/notes/common/legal.common
diff -u src/distrib/notes/common/legal.common:1.70 src/distrib/notes/common/legal.common:1.71
--- src/distrib/notes/common/legal.common:1.70	Thu Oct 22 20:31:24 2009
+++ src/distrib/notes/common/legal.common	Fri Oct 23 02:53:22 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: legal.common,v 1.70 2009/10/22 20:31:24 snj Exp $
+.\	$NetBSD: legal.common,v 1.71 2009/10/23 02:53:22 snj Exp $
 .\
 .\ Copyright (c) 1999-2004 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -130,8 +130,6 @@
 .It
 This product includes software developed by Boris Popov.
 .It
-This product includes software developed by Brad Pepers
-.It
 This product includes software developed by Bradley A. Grantham.
 .It
 This product includes software developed by Brini.



CVS commit: src/distrib/notes

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 02:56:01 UTC 2009

Modified Files:
src/distrib/notes/acorn26: legal
src/distrib/notes/evbppc: legal

Log Message:
Brini's acknowledgement already appears in legal.common.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/distrib/notes/acorn26/legal
cvs rdiff -u -r1.1 -r1.2 src/distrib/notes/evbppc/legal

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

Modified files:

Index: src/distrib/notes/acorn26/legal
diff -u src/distrib/notes/acorn26/legal:1.3 src/distrib/notes/acorn26/legal:1.4
--- src/distrib/notes/acorn26/legal:1.3	Tue Oct 20 01:41:44 2009
+++ src/distrib/notes/acorn26/legal	Fri Oct 23 02:56:01 2009
@@ -1,10 +1,8 @@
-.\	$NetBSD: legal,v 1.3 2009/10/20 01:41:44 snj Exp $
+.\	$NetBSD: legal,v 1.4 2009/10/23 02:56:01 snj Exp $
 .
 .\ db_disasm.c locore.S disklabel.h disklabel_acorn.h fp.h frame.h signal.h
 .\ undefined.h iocreg.h iic.h rtc.c podulebus.h
 .
 .It
-This product includes software developed by Brini.
-.It
 .\ param.h
 This product includes software developed by the RiscBSD team.

Index: src/distrib/notes/evbppc/legal
diff -u src/distrib/notes/evbppc/legal:1.1 src/distrib/notes/evbppc/legal:1.2
--- src/distrib/notes/evbppc/legal:1.1	Mon Dec  9 14:03:56 2002
+++ src/distrib/notes/evbppc/legal	Fri Oct 23 02:56:01 2009
@@ -1,8 +1,6 @@
-.\	$NetBSD: legal,v 1.1 2002/12/09 14:03:56 scw Exp $
+.\	$NetBSD: legal,v 1.2 2009/10/23 02:56:01 snj Exp $
 .
 .It
-This product includes software developed by Brini.
-.It
 This product includes software developed by Mark Brinicombe
 for the NetBSD Project.
 .It



CVS commit: src/sys/arch/mvme68k/include

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 03:25:36 UTC 2009

Modified Files:
src/sys/arch/mvme68k/include: disklabel.h

Log Message:
Follow revision 1.8 in OpenBSD: remove ad clause.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/mvme68k/include/disklabel.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/arch/mvme68k/include/disklabel.h
diff -u src/sys/arch/mvme68k/include/disklabel.h:1.9 src/sys/arch/mvme68k/include/disklabel.h:1.10
--- src/sys/arch/mvme68k/include/disklabel.h:1.9	Sun Dec 11 12:18:17 2005
+++ src/sys/arch/mvme68k/include/disklabel.h	Fri Oct 23 03:25:36 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: disklabel.h,v 1.9 2005/12/11 12:18:17 christos Exp $	*/
+/*	$NetBSD: disklabel.h,v 1.10 2009/10/23 03:25:36 snj Exp $	*/
 
 /*
  * Copyright (c) 1995 Dale Rahn.
@@ -12,10 +12,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *must display the following acknowledgement:
- *   This product includes software developed by Dale Rahn.
- * 4. The name of the author may not be used to endorse or promote products
+ * 3. The name of the author may not be used to endorse or promote products
  *derived from this software without specific prior written permission.
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR



CVS commit: src/sys/arch/mvme68k/mvme68k

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 03:28:09 UTC 2009

Modified Files:
src/sys/arch/mvme68k/mvme68k: disksubr.c

Log Message:
Follow revision 1.28 in OpenBSD: remove ad clause.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/mvme68k/mvme68k/disksubr.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/arch/mvme68k/mvme68k/disksubr.c
diff -u src/sys/arch/mvme68k/mvme68k/disksubr.c:1.34 src/sys/arch/mvme68k/mvme68k/disksubr.c:1.35
--- src/sys/arch/mvme68k/mvme68k/disksubr.c:1.34	Sat Apr 11 11:04:41 2009
+++ src/sys/arch/mvme68k/mvme68k/disksubr.c	Fri Oct 23 03:28:09 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: disksubr.c,v 1.34 2009/04/11 11:04:41 scw Exp $	*/
+/*	$NetBSD: disksubr.c,v 1.35 2009/10/23 03:28:09 snj Exp $	*/
 
 /*
  * Copyright (c) 1995 Dale Rahn.
@@ -12,10 +12,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *must display the following acknowledgement:
- *   This product includes software developed by Dale Rahn.
- * 4. The name of the author may not be used to endorse or promote products
+ * 3. The name of the author may not be used to endorse or promote products
  *derived from this software without specific prior written permission.
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
@@ -31,7 +28,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: disksubr.c,v 1.34 2009/04/11 11:04:41 scw Exp $);
+__KERNEL_RCSID(0, $NetBSD: disksubr.c,v 1.35 2009/10/23 03:28:09 snj Exp $);
 
 #include sys/param.h
 #include sys/systm.h



CVS commit: src/distrib/notes/common

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 03:28:55 UTC 2009

Modified Files:
src/distrib/notes/common: legal.common

Log Message:
Dale Rahn's ad clause is no more.


To generate a diff of this commit:
cvs rdiff -u -r1.71 -r1.72 src/distrib/notes/common/legal.common

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

Modified files:

Index: src/distrib/notes/common/legal.common
diff -u src/distrib/notes/common/legal.common:1.71 src/distrib/notes/common/legal.common:1.72
--- src/distrib/notes/common/legal.common:1.71	Fri Oct 23 02:53:22 2009
+++ src/distrib/notes/common/legal.common	Fri Oct 23 03:28:55 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: legal.common,v 1.71 2009/10/23 02:53:22 snj Exp $
+.\	$NetBSD: legal.common,v 1.72 2009/10/23 03:28:55 snj Exp $
 .\
 .\ Copyright (c) 1999-2004 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -189,8 +189,6 @@
 .It
 This product includes software developed by Daishi Kato
 .It
-This product includes software developed by Dale Rahn.
-.It
 This product includes software developed by Daniel Widenfalk
 and Michael L. Hitch.
 .It



CVS commit: src/distrib/notes/common

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 03:42:42 UTC 2009

Modified Files:
src/distrib/notes/common: legal.common

Log Message:
Remove entry for Gordon W. Ross (the Gordon Ross entry has to stay
for now, though).


To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 src/distrib/notes/common/legal.common

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

Modified files:

Index: src/distrib/notes/common/legal.common
diff -u src/distrib/notes/common/legal.common:1.72 src/distrib/notes/common/legal.common:1.73
--- src/distrib/notes/common/legal.common:1.72	Fri Oct 23 03:28:55 2009
+++ src/distrib/notes/common/legal.common	Fri Oct 23 03:42:42 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: legal.common,v 1.72 2009/10/23 03:28:55 snj Exp $
+.\	$NetBSD: legal.common,v 1.73 2009/10/23 03:42:42 snj Exp $
 .\
 .\ Copyright (c) 1999-2004 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -240,8 +240,6 @@
 .It
 This product includes software developed by Gordon Ross
 .It
-This product includes software developed by Gordon W. Ross
-.It
 This product includes software developed by HAYAKAWA Koichi.
 .It
 This product includes software developed by Harvard University and



CVS commit: src/distrib/notes/common

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 03:54:38 UTC 2009

Modified Files:
src/distrib/notes/common: legal.common

Log Message:
Remove Ian F. Darwin and others


To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 src/distrib/notes/common/legal.common

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

Modified files:

Index: src/distrib/notes/common/legal.common
diff -u src/distrib/notes/common/legal.common:1.73 src/distrib/notes/common/legal.common:1.74
--- src/distrib/notes/common/legal.common:1.73	Fri Oct 23 03:42:42 2009
+++ src/distrib/notes/common/legal.common	Fri Oct 23 03:54:38 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: legal.common,v 1.73 2009/10/23 03:42:42 snj Exp $
+.\	$NetBSD: legal.common,v 1.74 2009/10/23 03:54:38 snj Exp $
 .\
 .\ Copyright (c) 1999-2004 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -256,8 +256,6 @@
 This product includes software developed by Hubert Feyrer for
 the NetBSD Project.
 .It
-This product includes software developed by Ian F. Darwin and others.
-.It
 This product includes software developed by Ian W. Dall.
 .It
 This product includes software developed by Ichiro FUKUHARA.



CVS commit: src/distrib/notes

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 04:51:37 UTC 2009

Modified Files:
src/distrib/notes/acorn32: legal
src/distrib/notes/cats: legal
src/distrib/notes/evbarm: legal
src/distrib/notes/shark: legal

Log Message:
Neil Carson's ad clause is no more.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/distrib/notes/acorn32/legal
cvs rdiff -u -r1.2 -r1.3 src/distrib/notes/cats/legal
cvs rdiff -u -r1.3 -r1.4 src/distrib/notes/evbarm/legal
cvs rdiff -u -r1.2 -r1.3 src/distrib/notes/shark/legal

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

Modified files:

Index: src/distrib/notes/acorn32/legal
diff -u src/distrib/notes/acorn32/legal:1.2 src/distrib/notes/acorn32/legal:1.3
--- src/distrib/notes/acorn32/legal:1.2	Mon May 20 23:48:41 2002
+++ src/distrib/notes/acorn32/legal	Fri Oct 23 04:51:36 2009
@@ -1,10 +1,8 @@
-.\	$NetBSD: legal,v 1.2 2002/05/20 23:48:41 itojun Exp $
+.\	$NetBSD: legal,v 1.3 2009/10/23 04:51:36 snj Exp $
 .
 .It
 This product includes software developed by Advanced Risc Machines Ltd.
 .It
-This product includes software developed by Neil Carson.
-.It
 This product includes software developed by the RiscBSD kernel team.
 .It
 This product includes software developed by Scott Stevens.

Index: src/distrib/notes/cats/legal
diff -u src/distrib/notes/cats/legal:1.2 src/distrib/notes/cats/legal:1.3
--- src/distrib/notes/cats/legal:1.2	Mon May 20 23:48:43 2002
+++ src/distrib/notes/cats/legal	Fri Oct 23 04:51:37 2009
@@ -1,10 +1,8 @@
-.\	$NetBSD: legal,v 1.2 2002/05/20 23:48:43 itojun Exp $
+.\	$NetBSD: legal,v 1.3 2009/10/23 04:51:37 snj Exp $
 .
 .It
 This product includes software developed by Advanced Risc Machines Ltd.
 .It
-This product includes software developed by Neil Carson.
-.It
 This product includes software developed by the RiscBSD kernel team.
 .It
 This product includes software developed by Scott Stevens.

Index: src/distrib/notes/evbarm/legal
diff -u src/distrib/notes/evbarm/legal:1.3 src/distrib/notes/evbarm/legal:1.4
--- src/distrib/notes/evbarm/legal:1.3	Sat Oct 17 22:33:55 2009
+++ src/distrib/notes/evbarm/legal	Fri Oct 23 04:51:37 2009
@@ -1,12 +1,10 @@
-.\	$NetBSD: legal,v 1.3 2009/10/17 22:33:55 snj Exp $
+.\	$NetBSD: legal,v 1.4 2009/10/23 04:51:37 snj Exp $
 .
 .It
 This product includes software developed by Advanced Risc Machines Ltd.
 .It
 This product includes software developed by Microsoft.
 .It
-This product includes software developed by Neil Carson.
-.It
 This product includes software developed by the RiscBSD kernel team.
 .It
 This product includes software developed by Scott Stevens.

Index: src/distrib/notes/shark/legal
diff -u src/distrib/notes/shark/legal:1.2 src/distrib/notes/shark/legal:1.3
--- src/distrib/notes/shark/legal:1.2	Mon May 20 23:48:49 2002
+++ src/distrib/notes/shark/legal	Fri Oct 23 04:51:37 2009
@@ -1,10 +1,8 @@
-.\	$NetBSD: legal,v 1.2 2002/05/20 23:48:49 itojun Exp $
+.\	$NetBSD: legal,v 1.3 2009/10/23 04:51:37 snj Exp $
 .
 .It
 This product includes software developed by Advanced Risc Machines Ltd.
 .It
-This product includes software developed by Neil Carson.
-.It
 This product includes software developed by the RiscBSD kernel team.
 .It
 This product includes software developed by Scott Stevens.



CVS commit: src/sys/arch/xen/xen

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 05:10:48 UTC 2009

Modified Files:
src/sys/arch/xen/xen: evtchn.c

Log Message:
Drop 3rd and 4th clauses.  Approved by cl@ and Keir Fraser (copyright
holders).


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/xen/xen/evtchn.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/arch/xen/xen/evtchn.c
diff -u src/sys/arch/xen/xen/evtchn.c:1.45 src/sys/arch/xen/xen/evtchn.c:1.46
--- src/sys/arch/xen/xen/evtchn.c:1.45	Mon Oct 19 18:41:11 2009
+++ src/sys/arch/xen/xen/evtchn.c	Fri Oct 23 05:10:48 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: evtchn.c,v 1.45 2009/10/19 18:41:11 bouyer Exp $	*/
+/*	$NetBSD: evtchn.c,v 1.46 2009/10/23 05:10:48 snj Exp $	*/
 
 /*
  * Copyright (c) 2006 Manuel Bouyer.
@@ -39,11 +39,6 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *notice, this list of conditions and the following disclaimer in the
  *documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *must display the following acknowledgement:
- *  This product includes software developed by Christian Limpach.
- * 4. The name of the author may not be used to endorse or promote products
- *derived from this software without specific prior written permission.
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
@@ -59,7 +54,7 @@
 
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: evtchn.c,v 1.45 2009/10/19 18:41:11 bouyer Exp $);
+__KERNEL_RCSID(0, $NetBSD: evtchn.c,v 1.46 2009/10/23 05:10:48 snj Exp $);
 
 #include opt_xen.h
 #include isa.h



CVS commit: src/distrib/notes/amiga

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 05:26:49 UTC 2009

Modified Files:
src/distrib/notes/amiga: legal

Log Message:
Prune a bunch of acknowledgements that do not exist.  It seems someone
previously took the liberty of expanding a few big combined
acknowledgements into separate acknowledgements. Tisk tisk.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/distrib/notes/amiga/legal

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

Modified files:

Index: src/distrib/notes/amiga/legal
diff -u src/distrib/notes/amiga/legal:1.9 src/distrib/notes/amiga/legal:1.10
--- src/distrib/notes/amiga/legal:1.9	Fri Oct 23 02:53:22 2009
+++ src/distrib/notes/amiga/legal	Fri Oct 23 05:26:49 2009
@@ -1,26 +1,6 @@
-.\	$NetBSD: legal,v 1.9 2009/10/23 02:53:22 snj Exp $
+.\	$NetBSD: legal,v 1.10 2009/10/23 05:26:49 snj Exp $
 .
 .It
-This product includes software developed by Tobias Abt.
-.It
-This product includes software developed by Klaus Burkert.
-.It
-This product includes software developed by Michael van Elst.
-.It
-This product includes software developed by Bernd Ernesti.
-.It
-This product includes software developed by Markus Illenseer.
-.It
-This product includes software developed by Mika Kortelainen.
-.It
 This product includes software developed by Jukka Marin.
 .It
-This product includes software developed by Kari Mettinen.
-.It
-This product includes software developed by Ignatios Souvatzis.
-.It
-This product includes software developed by Michael Teske.
-.It
 This product includes software developed by Lutz Vieweg.
-.It
-This product includes software developed by Daniel Widenfalk.



CVS commit: src/distrib/notes/common

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 05:28:25 UTC 2009

Modified Files:
src/distrib/notes/common: legal.common

Log Message:
Jukka Marin's acknowledgement is in amiga/legal, where it belongs.


To generate a diff of this commit:
cvs rdiff -u -r1.74 -r1.75 src/distrib/notes/common/legal.common

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

Modified files:

Index: src/distrib/notes/common/legal.common
diff -u src/distrib/notes/common/legal.common:1.74 src/distrib/notes/common/legal.common:1.75
--- src/distrib/notes/common/legal.common:1.74	Fri Oct 23 03:54:38 2009
+++ src/distrib/notes/common/legal.common	Fri Oct 23 05:28:25 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: legal.common,v 1.74 2009/10/23 03:54:38 snj Exp $
+.\	$NetBSD: legal.common,v 1.75 2009/10/23 05:28:25 snj Exp $
 .\
 .\ Copyright (c) 1999-2004 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -294,8 +294,6 @@
 .It
 This product includes software developed by Jonathan Stone.
 .It
-This product includes software developed by Jukka Marin.
-.It
 This product includes software developed by Julian Highfield.
 .It
 This product includes software developed by Kazuhisa Shimizu.



CVS commit: src/distrib/notes/common

2009-10-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Oct 23 05:37:18 UTC 2009

Modified Files:
src/distrib/notes/common: legal.common

Log Message:
cl's ad clause is no more.


To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 src/distrib/notes/common/legal.common

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

Modified files:

Index: src/distrib/notes/common/legal.common
diff -u src/distrib/notes/common/legal.common:1.75 src/distrib/notes/common/legal.common:1.76
--- src/distrib/notes/common/legal.common:1.75	Fri Oct 23 05:28:25 2009
+++ src/distrib/notes/common/legal.common	Fri Oct 23 05:37:18 2009
@@ -1,4 +1,4 @@
-.\	$NetBSD: legal.common,v 1.75 2009/10/23 05:28:25 snj Exp $
+.\	$NetBSD: legal.common,v 1.76 2009/10/23 05:37:18 snj Exp $
 .\
 .\ Copyright (c) 1999-2004 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -169,8 +169,6 @@
 .It
 This product includes software developed by Christian E. Hopps.
 .It
-This product includes software developed by Christian Limpach.
-.It
 This product includes software developed by Christopher G. Demetriou
 for the NetBSD Project.
 .It