CVS commit: src/sys/dev/pci

2012-12-04 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Tue Dec  4 11:24:13 UTC 2012

Modified Files:
src/sys/dev/pci: radeonfb.c

Log Message:
make sure to use the same stride as the drawing engine when setting up video
modes. Now things work with horizontal resolutions that aren't multiples of
64 ( like 1440x900 )


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/sys/dev/pci/radeonfb.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/pci/radeonfb.c
diff -u src/sys/dev/pci/radeonfb.c:1.64 src/sys/dev/pci/radeonfb.c:1.65
--- src/sys/dev/pci/radeonfb.c:1.64	Thu Oct  4 10:29:24 2012
+++ src/sys/dev/pci/radeonfb.c	Tue Dec  4 11:24:12 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: radeonfb.c,v 1.64 2012/10/04 10:29:24 macallan Exp $ */
+/*	$NetBSD: radeonfb.c,v 1.65 2012/12/04 11:24:12 macallan Exp $ */
 
 /*-
  * Copyright (c) 2006 Itronix Inc.
@@ -70,7 +70,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: radeonfb.c,v 1.64 2012/10/04 10:29:24 macallan Exp $);
+__KERNEL_RCSID(0, $NetBSD: radeonfb.c,v 1.65 2012/12/04 11:24:12 macallan Exp $);
 
 #include sys/param.h
 #include sys/systm.h
@@ -794,6 +794,7 @@ radeonfb_attach(device_t parent, device_
 		/* N.B.: radeon wants 64-byte aligned stride */
 		dp-rd_stride = dp-rd_virtx * dp-rd_bpp / 8;
 		dp-rd_stride = ROUNDUP(dp-rd_stride, RADEON_STRIDEALIGN);
+		DPRINTF((stride: %d\n, dp-rd_stride));
 
 		dp-rd_offset = sc-sc_fboffset * i;
 		dp-rd_fbptr = (vaddr_t)bus_space_vaddr(sc-sc_memt,
@@ -2005,13 +2006,11 @@ radeonfb_setcrtc(struct radeonfb_display
 	mode = cp-rc_videomode;
 
 #if 1
-	pitch = (((dp-rd_virtx * dp-rd_bpp) + ((dp-rd_bpp * 8) - 1)) /
-	(dp-rd_bpp * 8));
+	pitch = dp-rd_stride / dp-rd_bpp;
 #else
 	pitch = (((sc-sc_maxx * sc-sc_maxbpp) + ((sc-sc_maxbpp * 8) - 1)) /
 	(sc-sc_maxbpp * 8));
 #endif
-
 	switch (crtc) {
 	case 0:
 		gencntl = RADEON_CRTC_GEN_CNTL;
@@ -2225,14 +2224,12 @@ radeonfb_init_screen(void *cookie, struc
 	ri-ri_height = dp-rd_virty;
 	ri-ri_stride = dp-rd_stride;
 	ri-ri_flg = RI_CENTER;
-	if (ri-ri_depth == 32) {
-		ri-ri_flg |= RI_ENABLE_ALPHA;
-	}
 	switch (ri-ri_depth) {
 		case 8:
 			ri-ri_flg |= RI_ENABLE_ALPHA | RI_8BIT_IS_RGB;
 			break;
 		case 32:
+			ri-ri_flg |= RI_ENABLE_ALPHA;
 			/* we run radeons in RGB even on SPARC hardware */
 			ri-ri_rnum = 8;
 			ri-ri_gnum = 8;



CVS commit: src/sys/dev/usb

2012-12-04 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Tue Dec  4 15:10:04 UTC 2012

Modified Files:
src/sys/dev/usb: usbdi.c

Log Message:
Improve DIAGNOSTIC printf


To generate a diff of this commit:
cvs rdiff -u -r1.139 -r1.140 src/sys/dev/usb/usbdi.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/usb/usbdi.c
diff -u src/sys/dev/usb/usbdi.c:1.139 src/sys/dev/usb/usbdi.c:1.140
--- src/sys/dev/usb/usbdi.c:1.139	Sun Jul 15 21:13:31 2012
+++ src/sys/dev/usb/usbdi.c	Tue Dec  4 15:10:04 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: usbdi.c,v 1.139 2012/07/15 21:13:31 mrg Exp $	*/
+/*	$NetBSD: usbdi.c,v 1.140 2012/12/04 15:10:04 skrll Exp $	*/
 
 /*
  * Copyright (c) 1998, 2012 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: usbdi.c,v 1.139 2012/07/15 21:13:31 mrg Exp $);
+__KERNEL_RCSID(0, $NetBSD: usbdi.c,v 1.140 2012/12/04 15:10:04 skrll Exp $);
 
 #include opt_compat_netbsd.h
 #include opt_usb.h
@@ -418,7 +418,7 @@ usbd_free_xfer(usbd_xfer_handle xfer)
 #if defined(DIAGNOSTIC)
 	if (callout_pending(xfer-timeout_handle)) {
 		callout_stop(xfer-timeout_handle);
-		printf(usbd_free_xfer: timout_handle pending);
+		printf(usbd_free_xfer: timeout_handle pending\n);
 	}
 #endif
 	cv_destroy(xfer-cv);



CVS commit: src/etc/rc.d

2012-12-04 Thread Patrick Welche
Module Name:src
Committed By:   prlw1
Date:   Tue Dec  4 16:38:40 UTC 2012

Modified Files:
src/etc/rc.d: ntpd ppp

Log Message:
Make sure that ntpd creates a pid file for the rc machinery to work.
http://mail-index.netbsd.org/current-users/2012/11/19/msg021518.html


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/etc/rc.d/ntpd
cvs rdiff -u -r1.8 -r1.9 src/etc/rc.d/ppp

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

Modified files:

Index: src/etc/rc.d/ntpd
diff -u src/etc/rc.d/ntpd:1.13 src/etc/rc.d/ntpd:1.14
--- src/etc/rc.d/ntpd:1.13	Fri Aug 13 18:08:03 2004
+++ src/etc/rc.d/ntpd	Tue Dec  4 16:38:40 2012
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: ntpd,v 1.13 2004/08/13 18:08:03 mycroft Exp $
+# $NetBSD: ntpd,v 1.14 2012/12/04 16:38:40 prlw1 Exp $
 #
 
 # PROVIDE: ntpd
@@ -19,6 +19,7 @@ required_files=/etc/ntp.conf
 
 ntpd_precmd()
 {
+	rc_flags=-p ${pidfile} $rc_flags
 	if [ -z $ntpd_chrootdir ]; then
 		return 0;
 	fi

Index: src/etc/rc.d/ppp
diff -u src/etc/rc.d/ppp:1.8 src/etc/rc.d/ppp:1.9
--- src/etc/rc.d/ppp:1.8	Mon Oct 11 15:00:51 2004
+++ src/etc/rc.d/ppp	Tue Dec  4 16:38:40 2012
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: ppp,v 1.8 2004/10/11 15:00:51 christos Exp $
+# $NetBSD: ppp,v 1.9 2012/12/04 16:38:40 prlw1 Exp $
 #
 
 # PROVIDE: ppp
@@ -14,6 +14,7 @@
 $_rc_subr_loaded . /etc/rc.subr
 
 name=ppp
+rcvar=$name
 start_cmd=ppp_start
 stop_cmd=ppp_stop
 sig_stop=-INT
@@ -40,6 +41,8 @@ ppp_start()
 			fi
 		done
 		echo .
+	else
+		warn \${ppp_peers} is not set - pppd was not started.
 	fi
 }
 



CVS commit: src/share/man/man3

2012-12-04 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Dec  4 18:02:48 UTC 2012

Modified Files:
src/share/man/man3: bitmap.3 bitstring.3

Log Message:
more xref and info


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/share/man/man3/bitmap.3
cvs rdiff -u -r1.14 -r1.15 src/share/man/man3/bitstring.3

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/man3/bitmap.3
diff -u src/share/man/man3/bitmap.3:1.4 src/share/man/man3/bitmap.3:1.5
--- src/share/man/man3/bitmap.3:1.4	Tue Dec  4 01:57:45 2012
+++ src/share/man/man3/bitmap.3	Tue Dec  4 13:02:48 2012
@@ -1,4 +1,4 @@
-.\	$NetBSD: bitmap.3,v 1.4 2012/12/04 06:57:45 jruoho Exp $
+.\	$NetBSD: bitmap.3,v 1.5 2012/12/04 18:02:48 christos Exp $
 .\
 .\ Copyright (c) 2012 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -50,7 +50,9 @@
 The supplied macros are similar to the
 .Xr select 2
 .Fn FD_SET
-family, and to the
+family, to the
+.Xr setbit 9 ,
+macros and the
 .Xr bitstring 3
 library.
 They are different from
@@ -58,6 +60,9 @@ They are different from
 because they are designed to handle multiple sized bitmaps at the same time,
 and they can be of any integral type.
 They are different from
+.Xr setbit 9
+because they can operate on different integral types, not just on bytes.
+They are different from
 .Xr bitstring 3
 because they are just macros, they don't allocate memory or use code,
 and they can be used in both kernel and userland.
@@ -126,7 +131,8 @@ main(int argc, char **argv)
 .Sh SEE ALSO
 .Xr select 2 ,
 .Xr bitops 3 ,
-.Xr bitstring 3
+.Xr bitstring 3,
+.Xr setbit 9
 .Sh HISTORY
 The
 .Fn __BITMAP_*

Index: src/share/man/man3/bitstring.3
diff -u src/share/man/man3/bitstring.3:1.14 src/share/man/man3/bitstring.3:1.15
--- src/share/man/man3/bitstring.3:1.14	Tue Dec  4 01:57:45 2012
+++ src/share/man/man3/bitstring.3	Tue Dec  4 13:02:48 2012
@@ -1,4 +1,4 @@
-.\	$NetBSD: bitstring.3,v 1.14 2012/12/04 06:57:45 jruoho Exp $
+.\	$NetBSD: bitstring.3,v 1.15 2012/12/04 18:02:48 christos Exp $
 .\
 .\ Copyright (c) 1989, 1991, 1993
 .\	The Regents of the University of California.  All rights reserved.
@@ -172,7 +172,8 @@ make_lpr_available()
 .Ed
 .Sh SEE ALSO
 .Xr bitmap 3 ,
-.Xr malloc 3
+.Xr malloc 3 ,
+.Xr setbit 9
 .Sh HISTORY
 The
 .Nm bitstring



CVS commit: src/share/man/man9

2012-12-04 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Dec  4 18:03:37 UTC 2012

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

Log Message:
more xref.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/share/man/man9/setbit.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/setbit.9
diff -u src/share/man/man9/setbit.9:1.2 src/share/man/man9/setbit.9:1.3
--- src/share/man/man9/setbit.9:1.2	Tue Mar  2 01:37:11 2010
+++ src/share/man/man9/setbit.9	Tue Dec  4 13:03:37 2012
@@ -1,4 +1,4 @@
-.\ $NetBSD: setbit.9,v 1.2 2010/03/02 06:37:11 jruoho Exp $
+.\ $NetBSD: setbit.9,v 1.3 2012/12/04 18:03:37 christos Exp $
 .\
 .\ Copyright (c) 2010 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -27,7 +27,7 @@
 .\ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\ POSSIBILITY OF SUCH DAMAGE.
 .\
-.Dd March 1, 2010
+.Dd December 4, 2012
 .Dt SETBIT 9
 .Os
 .Sh NAME
@@ -75,6 +75,7 @@ char buf[10];
 setbit(buf, 12);	/* set the fifth bit in the second byte */
 .Ed
 .Sh SEE ALSO
+.Xr bitmap 3 ,
 .Xr bitstring 3
 .Sh CAVEATS
 The number of valid bits in a given array is assumed to be multiple of



CVS commit: src/share/man/man3

2012-12-04 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Tue Dec  4 18:10:25 UTC 2012

Modified Files:
src/share/man/man3: bitmap.3

Log Message:
Whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/share/man/man3/bitmap.3

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/man3/bitmap.3
diff -u src/share/man/man3/bitmap.3:1.5 src/share/man/man3/bitmap.3:1.6
--- src/share/man/man3/bitmap.3:1.5	Tue Dec  4 18:02:48 2012
+++ src/share/man/man3/bitmap.3	Tue Dec  4 18:10:25 2012
@@ -1,4 +1,4 @@
-.\	$NetBSD: bitmap.3,v 1.5 2012/12/04 18:02:48 christos Exp $
+.\	$NetBSD: bitmap.3,v 1.6 2012/12/04 18:10:25 wiz Exp $
 .\
 .\ Copyright (c) 2012 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -131,7 +131,7 @@ main(int argc, char **argv)
 .Sh SEE ALSO
 .Xr select 2 ,
 .Xr bitops 3 ,
-.Xr bitstring 3,
+.Xr bitstring 3 ,
 .Xr setbit 9
 .Sh HISTORY
 The



CVS commit: src/share/examples/npf

2012-12-04 Thread S.P.Zeidler
Module Name:src
Committed By:   spz
Date:   Tue Dec  4 18:48:33 UTC 2012

Modified Files:
src/share/examples/npf: host-npf.conf soho_gw-npf.conf

Log Message:
adjust to current npf.conf syntax


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/share/examples/npf/host-npf.conf \
src/share/examples/npf/soho_gw-npf.conf

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

Modified files:

Index: src/share/examples/npf/host-npf.conf
diff -u src/share/examples/npf/host-npf.conf:1.2 src/share/examples/npf/host-npf.conf:1.3
--- src/share/examples/npf/host-npf.conf:1.2	Wed Aug 22 06:45:17 2012
+++ src/share/examples/npf/host-npf.conf	Tue Dec  4 18:48:32 2012
@@ -1,4 +1,4 @@
-# $NetBSD: host-npf.conf,v 1.2 2012/08/22 06:45:17 spz Exp $
+# $NetBSD: host-npf.conf,v 1.3 2012/12/04 18:48:32 spz Exp $
 #
 # this is an example of NPF rules for a host (i.e., not routing) with
 # two network interfaces, wired and wifi
@@ -7,7 +7,12 @@
 # it also does IPSEC on the wifi
 #
 $wired_if = wm0
+$wired_v4 = { inet4(wm0) }
+$wired_v6 = { inet6(wm0) }
+
 $wifi_if = iwn0
+$wifi_v4 = { inet4(iwn0) }
+$wifi_v6 = { inet6(iwn0) }
 
 $dhcpserver = { 198.51.100.1 }
 
@@ -37,38 +42,38 @@ group (name wired, interface $wired_if
 	pass in  final family inet  proto icmp  all
 
 	pass in  final family inet proto tcp \
-		from $dhcpserver port bootps to $wired_if port bootpc
+		from $dhcpserver port bootps to $wired_v4 port bootpc
 	pass in  final family inet proto udp \
-		from $dhcpserver port bootps to $wired_if port bootpc
+		from $dhcpserver port bootps to $wired_v4 port bootpc
 
-	pass in final family inet6 proto tcp to $wired_if port ssh
+	pass in final family inet6 proto tcp to $wired_v6 port ssh
 
 	pass in final family inet  proto tcp flags S/SA \
-		from $backupsrv_v4 to $wired_if port $backup_port 
+		from $backupsrv_v4 to $wired_v4 port $backup_port 
 	pass in final family inet  proto udp \
-		from $backupsrv_v4 to $wired_if port $backup_port
+		from $backupsrv_v4 to $wired_v4 port $backup_port
 	pass in final family inet6 proto tcp flags S/SA \
-		from $backupsrv_v6 to $wired_if port $backup_port 
+		from $backupsrv_v6 to $wired_v6 port $backup_port 
 	pass in final family inet6 proto udp \
-		from $backupsrv_v6 to $wired_if port $backup_port
+		from $backupsrv_v6 to $wired_v6 port $backup_port
 
-	pass stateful in final family inet6 proto udp to $wired_if \
+	pass stateful in final family inet6 proto udp to $wired_v6 \
 		port $services_udp
-	pass stateful in final family inet  proto udp to $wired_if \
+	pass stateful in final family inet  proto udp to $wired_v6 \
 		port $services_udp
 
 	# only SYN packets need to generate state
 	pass stateful out final family inet6 proto tcp flags S/SA \
-		from $wired_if apply rid 
+		from $wired_v6 apply rid 
 	pass stateful out final family inet  proto tcp flags S/SA \
-		from $wired_if apply rid 
+		from $wired_v4 apply rid 
 	# pass the other tcp packets without generating extra state
-	pass out final family inet6 proto tcp from $wired_if apply rid 
-	pass out final family inet  proto tcp from $wired_if apply rid 
+	pass out final family inet6 proto tcp from $wired_v6 apply rid 
+	pass out final family inet  proto tcp from $wired_v4 apply rid 
 
 	# all other types of traffic, generate state per packet
-	pass stateful out final family inet6 from $wired_if apply rid 
-	pass stateful out final family inet  from $wired_if apply rid 
+	pass stateful out final family inet6 from $wired_v6 apply rid 
+	pass stateful out final family inet  from $wired_v4 apply rid 
 
 }
 
@@ -81,37 +86,37 @@ group (name wifi, interface $wifi_if) 
 	pass in  final family inet6 proto ipv6-icmp  to ff00::/10
 	pass out final family inet6 proto ipv6-icmp from ff00::/10
 
-	pass in  final family inet6 proto ipv6-icmp to $wifi_if
-	pass in  final family inet  proto icmp  to $wifi_if
+	pass in  final family inet6 proto ipv6-icmp to $wifi_v6
+	pass in  final family inet  proto icmp  to $wifi_v6
 
 	pass in  final family inet proto tcp \
-		from any port bootps to $wifi_if port bootpc
+		from any port bootps to $wifi_v4 port bootpc
 	pass in  final family inet proto udp \
-		from any port bootps to $wifi_if port bootpc
+		from any port bootps to $wifi_v4 port bootpc
 
-pass in final family inet6 proto tcp flags S/SA to $wifi_if port ssh 
+pass in final family inet6 proto tcp flags S/SA to $wifi_v6 port ssh 
 
-pass in final family inet6 proto udp to $wifi_if port $services_udp
-pass in final family inet  proto udp to $wifi_if port $services_udp
+pass in final family inet6 proto udp to $wifi_v6 port $services_udp
+pass in final family inet  proto udp to $wifi_v4 port $services_udp
 
 	# IPSEC
-	pass in final family inet6 proto udp to $wifi_if port isakmp
-	pass in final family inet  proto udp to $wifi_if port isakmp
+	pass in final family inet6 proto udp to $wifi_v6 

CVS commit: src/sys/net/npf

2012-12-04 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Tue Dec  4 19:28:17 UTC 2012

Modified Files:
src/sys/net/npf: npf_tableset.c

Log Message:
npf_table_list: avoid triggering assert on diagnostic.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/net/npf/npf_tableset.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/net/npf/npf_tableset.c
diff -u src/sys/net/npf/npf_tableset.c:1.15 src/sys/net/npf/npf_tableset.c:1.16
--- src/sys/net/npf/npf_tableset.c:1.15	Mon Oct 29 02:27:12 2012
+++ src/sys/net/npf/npf_tableset.c	Tue Dec  4 19:28:16 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: npf_tableset.c,v 1.15 2012/10/29 02:27:12 rmind Exp $	*/
+/*	$NetBSD: npf_tableset.c,v 1.16 2012/12/04 19:28:16 rmind Exp $	*/
 
 /*-
  * Copyright (c) 2009-2012 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: npf_tableset.c,v 1.15 2012/10/29 02:27:12 rmind Exp $);
+__KERNEL_RCSID(0, $NetBSD: npf_tableset.c,v 1.16 2012/12/04 19:28:16 rmind Exp $);
 
 #include sys/param.h
 #include sys/types.h
@@ -575,8 +575,7 @@ npf_table_list(npf_tableset_t *tset, u_i
 		if (error)
 			break;
 		error = table_tree_list(t-t_tree[1], 128, ubuf, len, off);
-		if (error)
-			break;
+		break;
 	default:
 		KASSERT(false);
 	}



CVS commit: src/libexec/httpd

2012-12-04 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Tue Dec  4 22:42:14 UTC 2012

Modified Files:
src/libexec/httpd: bozohttpd.8

Log Message:
Minor typo


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/libexec/httpd/bozohttpd.8

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

Modified files:

Index: src/libexec/httpd/bozohttpd.8
diff -u src/libexec/httpd/bozohttpd.8:1.34 src/libexec/httpd/bozohttpd.8:1.35
--- src/libexec/httpd/bozohttpd.8:1.34	Mon Feb 20 09:45:22 2012
+++ src/libexec/httpd/bozohttpd.8	Tue Dec  4 22:42:14 2012
@@ -1,4 +1,4 @@
-.\	$NetBSD: bozohttpd.8,v 1.34 2012/02/20 09:45:22 wiz Exp $
+.\	$NetBSD: bozohttpd.8,v 1.35 2012/12/04 22:42:14 pgoyette Exp $
 .\
 .\	$eterna: bozohttpd.8,v 1.101 2011/11/18 01:25:11 mrg Exp $
 .\
@@ -150,7 +150,7 @@ value obtained via
 .It Fl i Ar address
 Causes
 .Ar address
-to use used as the address to bind daemon mode.
+to be used as the address to bind daemon mode.
 If otherwise unspecified, the address used to bind is derived from the
 .Ar myname ,
 which defaults to the name returned by



CVS commit: src

2012-12-04 Thread S.P.Zeidler
Module Name:src
Committed By:   spz
Date:   Tue Dec  4 23:38:59 UTC 2012

Modified Files:
src/distrib/sets/lists/base: ad.mips64eb ad.mips64el md.amd64
md.sparc64 mi shl.mi
src/distrib/sets/lists/man: mi
src/external/bsd/bind/bin/dnssec: Makefile
src/external/bsd/bind/dist: CHANGES acconfig.h config.h.in srcid
version
src/external/bsd/bind/dist/bin/check: check-tool.c
src/external/bsd/bind/dist/bin/dig: nslookup.c
src/external/bsd/bind/dist/bin/dnssec: dnssec-dsfromkey.8
dnssec-dsfromkey.c dnssec-keyfromlabel.8 dnssec-keyfromlabel.c
dnssec-keygen.8 dnssec-keygen.c dnssec-settime.c dnssec-signzone.c
dnssec-verify.8 dnssec-verify.c dnssectool.c dnssectool.h
src/external/bsd/bind/dist/bin/named: builtin.c client.c config.c
controlconf.c query.c server.c statschannel.c
src/external/bsd/bind/dist/bin/named/unix: dlz_dlopen_driver.c
src/external/bsd/bind/dist/bin/nsupdate: nsupdate.c
src/external/bsd/bind/dist/bin/python: dnssec-checkds.8
dnssec-checkds.docbook
src/external/bsd/bind/dist/bin/tests/dst: t_dst.c
src/external/bsd/bind/dist/bin/tests/names: t_names.c
src/external/bsd/bind/dist/bin/tests/resolver: t_resolver.c
src/external/bsd/bind/dist/bin/tests/system: testsock6.pl
src/external/bsd/bind/dist/bin/tests/system/checkds:
missing.example.dlv.example.dlv.db
src/external/bsd/bind/dist/bin/tests/system/rpz: rpz.c
src/external/bsd/bind/dist/bin/tests/system/rsabigexponent: bigkey.c
src/external/bsd/bind/dist/bin/tests/system/rsabigexponent/ns2:
Xexample.+005+05896.private
src/external/bsd/bind/dist/bin/tests/system/stub: tests.sh
src/external/bsd/bind/dist/contrib/dlz/drivers: dlz_dlopen_driver.c
src/external/bsd/bind/dist/contrib/named-bootconf: named-bootconf.sh
src/external/bsd/bind/dist/contrib/zkt/doc: rfc5011.txt
src/external/bsd/bind/dist/doc/arm: Bv9ARM.pdf isc-logo.pdf
src/external/bsd/bind/dist/doc/misc: options
src/external/bsd/bind/dist/lib/bind9: check.c
src/external/bsd/bind/dist/lib/dns: adb.c db.c dnssec.c ds.c dst_api.c
dst_internal.h dst_openssl.h dst_parse.c dst_parse.h dst_result.c
gssapi_link.c hmac_link.c log.c master.c masterdump.c nsec.c
nsec3.c openssl_link.c openssldh_link.c openssldsa_link.c
opensslecdsa_link.c opensslgost_link.c opensslrsa_link.c rbtdb.c
rcode.c rdata.c rdataset.c resolver.c rpz.c update.c validator.c
view.c zone.c zt.c
src/external/bsd/bind/dist/lib/dns/include/dns: db.h dnssec.h ds.h
iptable.h keyvalues.h log.h nsec.h private.h rdata.h rdataset.h
rpz.h stats.h view.h zone.h
src/external/bsd/bind/dist/lib/dns/include/dst: dst.h result.h
src/external/bsd/bind/dist/lib/dns/rdata/generic: dlv_32769.c ds_43.c
src/external/bsd/bind/dist/lib/dns/tests: Makefile.in dnstest.h
rdataset_test.c
src/external/bsd/bind/dist/lib/isc: mem.c task.c task_api.c
src/external/bsd/bind/dist/lib/isc/ia64/include/isc: atomic.h
src/external/bsd/bind/dist/lib/isc/include/isc: file.h heap.h list.h
namespace.h queue.h task.h
src/external/bsd/bind/dist/lib/isc/pthreads: condition.c
src/external/bsd/bind/dist/lib/isc/tests: isctest.h
src/external/bsd/bind/dist/lib/isc/unix: file.c
src/external/bsd/bind/dist/lib/isc/win32: file.c
src/external/bsd/bind/dist/lib/isc/win32/include/isc: stat.h
src/external/bsd/bind/dist/lib/isccc: cc.c
src/external/bsd/bind/dist/lib/isccfg: namedconf.c
src/external/bsd/bind/dist/lib/lwres: getaddrinfo.c
src/external/bsd/bind/dist/make: rules.in
src/external/bsd/bind/dist/unit/atf-src/atf-c: macros.h
src/external/bsd/bind/dist/unit/atf-src/atf-c/detail: process_test.c
sanity.h text_test.c
src/external/bsd/bind/include: config.h
src/external/bsd/bind/lib/libbind9: shlib_version
src/external/bsd/bind/lib/libdns: Makefile shlib_version
src/external/bsd/bind/lib/libisc: shlib_version
src/external/bsd/bind/lib/libisccc: shlib_version
src/external/bsd/bind/lib/libisccfg: shlib_version
src/external/bsd/bind/lib/liblwres: shlib_version
Added Files:
src/external/bsd/bind/bin/dnssec/dnssec-verify: Makefile

Log Message:
merge bind-9-9-2-P1 and adjust build as needed
fixes CVE-2012-5688, see:
http://www.isc.org/software/bind/advisories/cve-2012-5688


To generate a diff of this commit:
cvs rdiff -u -r1.103 -r1.104 src/distrib/sets/lists/base/ad.mips64eb \
src/distrib/sets/lists/base/ad.mips64el
cvs rdiff -u -r1.179 -r1.180 src/distrib/sets/lists/base/md.amd64
cvs rdiff -u -r1.168 -r1.169 

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

2012-12-04 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Wed Dec  5 01:46:23 UTC 2012

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

Log Message:
remove trailing whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/xen/xen/xpci_xenbus.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/xpci_xenbus.c
diff -u src/sys/arch/xen/xen/xpci_xenbus.c:1.11 src/sys/arch/xen/xen/xpci_xenbus.c:1.12
--- src/sys/arch/xen/xen/xpci_xenbus.c:1.11	Mon Mar  5 16:53:59 2012
+++ src/sys/arch/xen/xen/xpci_xenbus.c	Wed Dec  5 01:46:22 2012
@@ -1,4 +1,4 @@
-/*  $NetBSD: xpci_xenbus.c,v 1.11 2012/03/05 16:53:59 jakllsch Exp $  */
+/*  $NetBSD: xpci_xenbus.c,v 1.12 2012/12/05 01:46:22 jakllsch Exp $  */
 
 /*
  * Copyright (c) 2009 Manuel Bouyer.
@@ -26,7 +26,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: xpci_xenbus.c,v 1.11 2012/03/05 16:53:59 jakllsch Exp $);
+__KERNEL_RCSID(0, $NetBSD: xpci_xenbus.c,v 1.12 2012/12/05 01:46:22 jakllsch Exp $);
 
 #include opt_xen.h
 
@@ -423,7 +423,7 @@ xpci_do_op(struct xen_pci_op *op)
 	   _XEN_PCIF_active)) {
 		hypervisor_clear_event(xpci_sc-sc_evtchn);
 		/* HYPERVISOR_yield(); */
-	} 
+	}
 	memcpy(op, active_op, sizeof(struct xen_pci_op));
 	__cpu_simple_unlock(pci_conf_lock);
 	splx(s);



CVS commit: src

2012-12-04 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Dec  5 02:23:21 UTC 2012

Modified Files:
src/sbin/cgdconfig: cgdconfig.8 cgdconfig.c
src/share/man/man4: cgd.4
src/sys/dev: cgd.c cgd_crypto.c cgd_crypto.h cgdvar.h

Log Message:
add cgdconfig -l like vnconfig -l


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sbin/cgdconfig/cgdconfig.8
cvs rdiff -u -r1.33 -r1.34 src/sbin/cgdconfig/cgdconfig.c
cvs rdiff -u -r1.16 -r1.17 src/share/man/man4/cgd.4
cvs rdiff -u -r1.77 -r1.78 src/sys/dev/cgd.c
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/cgd_crypto.c
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/cgd_crypto.h
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/cgdvar.h

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

Modified files:

Index: src/sbin/cgdconfig/cgdconfig.8
diff -u src/sbin/cgdconfig/cgdconfig.8:1.31 src/sbin/cgdconfig/cgdconfig.8:1.32
--- src/sbin/cgdconfig/cgdconfig.8:1.31	Sun Jul  3 15:05:10 2011
+++ src/sbin/cgdconfig/cgdconfig.8	Tue Dec  4 21:23:20 2012
@@ -1,4 +1,4 @@
-.\ $NetBSD: cgdconfig.8,v 1.31 2011/07/03 19:05:10 dholland Exp $
+.\ $NetBSD: cgdconfig.8,v 1.32 2012/12/05 02:23:20 christos Exp $
 .\
 .\ Copyright (c) 2002, The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -27,7 +27,7 @@
 .\ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\ POSSIBILITY OF SUCH DAMAGE.
 .\
-.Dd October 19, 2009
+.Dd December 3, 2012
 .Dt CGDCONFIG 8
 .Os
 .Sh NAME
@@ -44,10 +44,6 @@
 .Op Fl nv
 .Op Fl f Ar configfile
 .Nm
-.Fl U
-.Op Fl nv
-.Op Fl f Ar configfile
-.Nm
 .Fl G
 .Op Fl nv
 .Op Fl i Ar ivmeth
@@ -63,6 +59,9 @@
 .Ar alg
 .Op Ar keylen
 .Nm
+.Fl l
+.Op Fl cgd
+.Nm
 .Fl s
 .Op Fl nv
 .Op Fl i Ar ivmeth
@@ -71,6 +70,10 @@
 .Ar alg
 .Op Ar keylen
 .Nm
+.Fl U
+.Op Fl nv
+.Op Fl f Ar configfile
+.Nm
 .Fl u
 .Op Fl nv
 .Ar cgd
@@ -100,6 +103,11 @@ Generate a paramsfile (to stdout).
 Specify the IV method (default: encblkno1).
 .It Fl k Ar kgmeth
 Specify the key generation method (default: pkcs5_pbkdf2/sha1).
+.It Fl l Op Ar cgd
+List state of all devices or just the one
+.Ar cgd
+device.
+The verbosity level affects the output.
 .It Fl n
 Do not actually configure or unconfigure a cryptographic disk
 device, but instead report the steps that would be taken.
@@ -335,22 +343,29 @@ when we configure the first time to set 
 Here is the
 sequence of commands that is recommended:
 .Bd -literal
- # cgdconfig -g -o /etc/cgd/wd0e -V disklabel aes-cbc
- # cgdconfig -V re-enter cgd0 /dev/wd0e
- /dev/wd0e's passphrase:
- re-enter device's passphrase:
- # disklabel -e -I cgd0
- # cgdconfig -u cgd0
- # cgdconfig cgd0 /dev/wd0e
- /dev/wd0e's passphrase:
+	# cgdconfig -g -o /etc/cgd/wd0e -V disklabel aes-cbc
+	# cgdconfig -V re-enter cgd0 /dev/wd0e
+	/dev/wd0e's passphrase:
+	re-enter device's passphrase:
+	# disklabel -e -I cgd0
+	# cgdconfig -u cgd0
+	# cgdconfig cgd0 /dev/wd0e
+	/dev/wd0e's passphrase:
+.Ed
+.Pp
+To scrub data from a disk before setting up a cgd:
+.Bd -literal
+	# cgdconfig -s cgd0 /dev/sd0e aes-cbc 256  /dev/urandom 
+	# dd if=/dev/zero of=/dev/rcgd0d bs=32k progress=512
+	# cgdconfig -u cgd0
 .Ed
 .Pp
 To create a new parameters file that will generate the same key as an old
 parameters file:
 .Bd -literal
- # cgdconfig -G -o newparamsfile oldparamsfile
- old file's passphrase:
- new file's passphrase:
+	# cgdconfig -G -o newparamsfile oldparamsfile
+	old file's passphrase:
+	new file's passphrase:
 .Ed
 .Pp
 To configure a cgd that uses Blowfish with a 200 bit key that it
@@ -395,9 +410,13 @@ An example
 	cgd1		/dev/sd0h	/usr/local/etc/cgd/sd0h
 .Ed
 .Pp
-Note that this will store the parameters file as
+Note the first entry will store the parameters file as
 .Pa /etc/cgd/wd0e .
 And use the entered passphrase to generate the key.
+.Pp
+Although not required, the partition type
+.Ar cgd
+should be used in the disklabel for the cgd partition.
 .Sh DIAGNOSTICS
 .Bl -diag
 .It cgdconfig: could not calibrate pkcs5_pbkdf2

Index: src/sbin/cgdconfig/cgdconfig.c
diff -u src/sbin/cgdconfig/cgdconfig.c:1.33 src/sbin/cgdconfig/cgdconfig.c:1.34
--- src/sbin/cgdconfig/cgdconfig.c:1.33	Mon Aug 29 10:34:59 2011
+++ src/sbin/cgdconfig/cgdconfig.c	Tue Dec  4 21:23:20 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: cgdconfig.c,v 1.33 2011/08/29 14:34:59 joerg Exp $ */
+/* $NetBSD: cgdconfig.c,v 1.34 2012/12/05 02:23:20 christos Exp $ */
 
 /*-
  * Copyright (c) 2002, 2003 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
 #ifndef lint
 __COPYRIGHT(@(#) Copyright (c) 2002, 2003\
  The NetBSD Foundation, Inc.  All rights reserved.);
-__RCSID($NetBSD: cgdconfig.c,v 1.33 2011/08/29 14:34:59 joerg Exp $);
+__RCSID($NetBSD: cgdconfig.c,v 1.34 2012/12/05 02:23:20 christos Exp $);
 #endif
 
 #include err.h
@@ -51,6 +51,7 @@ __RCSID($NetBSD: cgdconfig.c,v 1.33 201
 #include 

CVS commit: src

2012-12-04 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Wed Dec  5 04:21:30 UTC 2012

Modified Files:
src/share/man/man9: sysmon_envsys.9
src/sys/sys: envsys.h

Log Message:
Document that ENVSYS_STEMP is in microkelvins.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/share/man/man9/sysmon_envsys.9
cvs rdiff -u -r1.32 -r1.33 src/sys/sys/envsys.h

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/sysmon_envsys.9
diff -u src/share/man/man9/sysmon_envsys.9:1.42 src/share/man/man9/sysmon_envsys.9:1.43
--- src/share/man/man9/sysmon_envsys.9:1.42	Sun Jul 15 18:34:03 2012
+++ src/share/man/man9/sysmon_envsys.9	Wed Dec  5 04:21:30 2012
@@ -1,4 +1,4 @@
-.\	$NetBSD: sysmon_envsys.9,v 1.42 2012/07/15 18:34:03 pgoyette Exp $
+.\	$NetBSD: sysmon_envsys.9,v 1.43 2012/12/05 04:21:30 riastradh Exp $
 .\
 .\ Copyright (c) 2007, 2008 The NetBSD Foundation, Inc.
 .\ All rights reserved.
@@ -406,7 +406,7 @@ The following units are defined:
 .Pp
 .Bl -tag -width ENVSYS_BATTERY_CAPACITY -compact
 .It Dv ENVSYS_STEMP
-For temperature sensors.
+For temperature sensors, in microkelvins.
 .It Dv ENVSYS_SFANRPM
 For fan sensors.
 .It Dv ENVSYS_SVOLTS_AC

Index: src/sys/sys/envsys.h
diff -u src/sys/sys/envsys.h:1.32 src/sys/sys/envsys.h:1.33
--- src/sys/sys/envsys.h:1.32	Mon Aug 27 21:07:33 2012
+++ src/sys/sys/envsys.h	Wed Dec  5 04:21:30 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: envsys.h,v 1.32 2012/08/27 21:07:33 pgoyette Exp $ */
+/* $NetBSD: envsys.h,v 1.33 2012/12/05 04:21:30 riastradh Exp $ */
 
 /*-
  * Copyright (c) 1999, 2007 The NetBSD Foundation, Inc.
@@ -49,7 +49,7 @@
 
 /* sensor units */
 enum envsys_units {
-	ENVSYS_STEMP		= 0,	/* Temperature */
+	ENVSYS_STEMP		= 0,	/* Temperature (microkelvins) */
 	ENVSYS_SFANRPM,			/* Fan RPM */
 	ENVSYS_SVOLTS_AC,		/* AC Volts */
 	ENVSYS_SVOLTS_DC,		/* DC Volts */



CVS commit: src/doc

2012-12-04 Thread John Nemeth
Module Name:src
Committed By:   jnemeth
Date:   Wed Dec  5 05:05:12 UTC 2012

Modified Files:
src/doc: RESPONSIBLE

Log Message:
- add a couple of items for which I feel at least some responsibility
- delete sendmail, since it was removed from the source tree eons ago
- give ptyfs to christos since he completely overhauled it recently
- sync portmaster list with http://www.NetBSD.org/people/port-maintainers.html


To generate a diff of this commit:
cvs rdiff -u -r1.102 -r1.103 src/doc/RESPONSIBLE

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

Modified files:

Index: src/doc/RESPONSIBLE
diff -u src/doc/RESPONSIBLE:1.102 src/doc/RESPONSIBLE:1.103
--- src/doc/RESPONSIBLE:1.102	Sat Dec  1 03:09:55 2012
+++ src/doc/RESPONSIBLE	Wed Dec  5 05:05:12 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: RESPONSIBLE,v 1.102 2012/12/01 03:09:55 dholland Exp $
+#	$NetBSD: RESPONSIBLE,v 1.103 2012/12/05 05:05:12 jnemeth Exp $
 
 List of sections of the system, and who is responsible for them (or at
 least considered an expert on them).
@@ -38,6 +38,7 @@ lua/luac	mbalmer
 make		christos, sjg, dholland
 named(bind)	christos
 ntp		simonb, jonathan
+openpam		christos, jnemeth
 openssh		christos
 pax/tar		christos
 pcc		ragge
@@ -49,7 +50,6 @@ ppp(async)	christos
 ppp(sync)	martin?
 racoon		manu
 routed		christos
-sendmail	atatat
 sh		christos, dsl
 sort		jdolecek
 sysctl		atatat
@@ -194,7 +194,7 @@ ntfs		jdolecek
 nullfs/layerfs	dholland, pooka
 overlay		[nobody]
 procfs		?
-ptyfs		?
+ptyfs		christos
 puffs		pooka
 smbfs		jdolecek
 sysvbfs		?
@@ -222,6 +222,7 @@ ddb		jhawk
 emulation	christos, fvdl, manu, jdolecek, mrg
 kevents		jdolecek
 ksyms		ragge
+modules		jnemeth
 lwp/pthread	nathanw
 ntp		simonb, jonathan
 pipes		jdolecek
@@ -256,53 +257,61 @@ Portmasters:
 [should be synced with src/distrib/notes/common/main]
 acorn26		bjh21
 acorn32		reinoud
+amd64		dsl
 algor		thorpej
-alpha		matt, ross
+alpha		matt
 amiga		is
+amigappc	is
 arc		soda
 atari		jdc
 bebox		core
 cats		chris
 cesfic		drochner
-cobalt		soren
+cobalt		cyber
+emips		pooka
 evbarm		thorpej
 evbmips		simonb
-evbppc		simonb, eeh
+evbppc		scw
 evbsh3		core
+ews4800mips	tsutsui
 hp300		tsutsui
-hp700		fredette
+hp700		skrll
 hpcarm		ichiro, toshii
 hpcmips		takemura
-hpcsh		uch
-i386		fvdl
+hpcsh		uwe
+i386		dsl
+ibmnws		matt
 iyonix		gavan
 luna68k		nisimura
 mac68k		scottr
-macppc		tsubai
+macppc		macallan
 mipsco		wdk
 mmeye		core
 mvme68k		scw
 mvmeppc		scw
+netwinder	matt
 news68k		tsutsui
 newsmips	tsubai
 next68k		core
-ofppc		ws
+ofppc		garbled
+pmax		simonb
 pc532		phil
-pmax		simonb, jonathan
+pmax		simonb
 pmppc		augustss
-prep		nonaka
-sandpoint	briggs
+prep		garbled
+sandpoint	nisimura
 sbmips		simonb
 sgimips		soren
 shark		thorpej
+sh3		msaitoh
 sparc		pk
-sparc64		martin, petrov
+sparc64		martin
 sun2		fredette
 sun3		nathanw, jeremy
 usermode	reinoud
 vax		ragge
 x68k		nsmrtks
-xen		cl, bouyer
+xen		bouyer
 
 
 MD Misc:



CVS commit: src/doc

2012-12-04 Thread John Nemeth
Module Name:src
Committed By:   jnemeth
Date:   Wed Dec  5 05:44:16 UTC 2012

Modified Files:
src/doc: RESPONSIBLE

Log Message:
- flag anybody that no longer has commit rights
- remove anybody that is deceased
- assign all ports to core for which the portmaster no longer has commit rights


To generate a diff of this commit:
cvs rdiff -u -r1.103 -r1.104 src/doc/RESPONSIBLE

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

Modified files:

Index: src/doc/RESPONSIBLE
diff -u src/doc/RESPONSIBLE:1.103 src/doc/RESPONSIBLE:1.104
--- src/doc/RESPONSIBLE:1.103	Wed Dec  5 05:05:12 2012
+++ src/doc/RESPONSIBLE	Wed Dec  5 05:44:16 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: RESPONSIBLE,v 1.103 2012/12/05 05:05:12 jnemeth Exp $
+#	$NetBSD: RESPONSIBLE,v 1.104 2012/12/05 05:44:16 jnemeth Exp $
 
 List of sections of the system, and who is responsible for them (or at
 least considered an expert on them).
@@ -15,33 +15,33 @@ amd		christos
 atf		jmmv
 audioplay	mrg
 audiorecord	mrg
-awk		jdolecek
-bc		phil, simonb
+awk		jdolecek*
+bc		phil*, simonb
 csh		christos
 cvs		christos, wiz
 dhcp		mellon
 edquota		dholland
-etcupdate	martti
-expr		jdolecek
+etcupdate	[nobody]
+expr		jdolecek*
 file		christos, pooka
 gpioctl		mbalmer
 grep		simonb, wiz
 groff		wiz
-gzip		mrg, atatat
+gzip		mrg, atatat*
 ifconfig	dyoung
-hostapd		none
+hostapd		[nobody]
 installboot(mi)	core
-kerberos	lha, joda
+kerberos	lha*, joda*
 less/more	mrg
 lint		christos
 lua/luac	mbalmer
 make		christos, sjg, dholland
 named(bind)	christos
-ntp		simonb, jonathan
+ntp		simonb, jonathan*
 openpam		christos, jnemeth
 openssh		christos
 pax/tar		christos
-pcc		ragge
+pcc		ragge*
 ping		christos
 ping6		core
 postfix		tron
@@ -51,12 +51,12 @@ ppp(sync)	martin?
 racoon		manu
 routed		christos
 sh		christos, dsl
-sort		jdolecek
-sysctl		atatat
+sort		jdolecek*
+sysctl		atatat*
 talk/talkd	dholland
 tcpdump		core
 texinfo		wiz
-toolchain	thorpej, mrg
+toolchain	thorpej*, mrg
 top		simonb
 user		agc
 vi		aymeric
@@ -69,14 +69,14 @@ Userland Libraries:
 atf		jmmv
 citrus		core
 curses		blymn, jdc
-edit		christos, jdolecek
-kerberos	lha, joda
-openssl		thorpej, christos
+edit		christos, jdolecek*
+kerberos	lha*, joda*
+openssl		thorpej*, christos
 pcap		core
-pthread		nathanw
+pthread		nathanw*
 quota		dholland
 resolver(bind)	christos
-softfloat	bjh21
+softfloat	bjh21*
 tz		kleink
 
 
@@ -92,7 +92,7 @@ terminfo	roy
 X:
 
 [Surely this needs breaking up further]
-XFree86		tron, mrg, rtr, macallan
+XFree86		tron, mrg, rtr*, macallan
 xorg		macallan
 
 X video drivers:
@@ -105,35 +105,35 @@ Kernel:
 
 device support:
 
-acpi		thorpej, kochi, jmcneill, joerg
-audio		augustss, jmcneill
+acpi		thorpej*, kochi*, jmcneill*, joerg
+audio		augustss*, jmcneill*
 cgd		elric
 firewire	jmc
 flash		ahoka
 gpio		mbalmer
 ide/atapi	bouyer
-irda		augustss, kenh
+irda		augustss*, kenh
 isdn		martin
 keylock		mbalmer
-mca		jdolecek
+mca		jdolecek*
 nand		ahoka
 net80211	dyoung
 onewire		riz
-podulebus	bjh21
-scsi		bouyer, thorpej, reinoud
-raid(hard)	ad
+podulebus	bjh21*
+scsi		bouyer, thorpej*, reinoud
+raid(hard)	ad*
 raidframe	oster
-usb		augustss
+usb		augustss*
 vcons		macallan
 
 device drivers:
 
 audio device drivers:
 
-auich		kent
+auich		kent*
 dbri		macallan
 eap		pooka
-esa		jmcneill
+esa		jmcneill*
 
 console device drivers:
 
@@ -146,12 +146,12 @@ network device drivers:
 
 ath		dyoung
 atw		dyoung
-bge		fvdl, jonathan, thorpej
-gsip		thorpej
+bge		fvdl*, jonathan*, thorpej*
+gsip		thorpej*
 mb86960		tsutsui
 rtw		dyoung
 run		nonaka
-seeq8005	bjh21
+seeq8005	bjh21*
 ti		bouyer
 tl		bouyer
 urtwn		nonaka
@@ -179,24 +179,24 @@ adosfs		?
 cd9660		?
 chfs		ttoth
 coda		gdt
-efs		rumble
+efs		rumble*
 ext2fs		[nobody in particular]
 ffs		?
 ffs+wapbl	?
-hfs		dillo
+hfs		dillo*
 kernfs		?
 lfs		dholland, perseant
 mfs		[nobody in particular]
-msdosfs		jdolecek
+msdosfs		jdolecek*
 nilfs		reinoud
 nfs		[nobody really]
-ntfs		jdolecek
+ntfs		jdolecek*
 nullfs/layerfs	dholland, pooka
 overlay		[nobody]
 procfs		?
 ptyfs		christos
 puffs		pooka
-smbfs		jdolecek
+smbfs		jdolecek*
 sysvbfs		?
 tmpfs		rmind
 udf		reinoud
@@ -219,21 +219,21 @@ misc		dholland, pooka
 kern/general:
 
 ddb		jhawk
-emulation	christos, fvdl, manu, jdolecek, mrg
-kevents		jdolecek
-ksyms		ragge
+emulation	christos, fvdl*, manu, jdolecek*, mrg
+kevents		jdolecek*
+ksyms		ragge*
 modules		jnemeth
-lwp/pthread	nathanw
-ntp		simonb, jonathan
-pipes		jdolecek
-splash		jmcneill
-uvm		chuck, chs, mrg, atatat
+lwp/pthread	nathanw*
+ntp		simonb, jonathan*
+pipes		jdolecek*
+splash		jmcneill*
+uvm		chuck, chs, mrg, atatat*
 
 kern/compat:
 
 linux-alpha	erh
-linux-i386	fvdl, jdolecek
-linux-m68k	itohy
+linux-i386	fvdl*, jdolecek*
+linux-m68k	itohy*
 linux-mips	manu
 linux-powerpc	manu
 linux-amd64	manu
@@ -244,40 +244,40 @@ netbsd32	mrg
 
 networking:
 
-general net	thorpej, matt
-ipf		darrenr, martti
+general net	thorpej*, matt
+ipf		

CVS commit: src/doc

2012-12-04 Thread John Nemeth
Module Name:src
Committed By:   jnemeth
Date:   Wed Dec  5 06:19:11 UTC 2012

Modified Files:
src/doc: RESPONSIBLE

Log Message:
got confirmation that pc532 is ancient history. so delete it


To generate a diff of this commit:
cvs rdiff -u -r1.104 -r1.105 src/doc/RESPONSIBLE

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

Modified files:

Index: src/doc/RESPONSIBLE
diff -u src/doc/RESPONSIBLE:1.104 src/doc/RESPONSIBLE:1.105
--- src/doc/RESPONSIBLE:1.104	Wed Dec  5 05:44:16 2012
+++ src/doc/RESPONSIBLE	Wed Dec  5 06:19:11 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: RESPONSIBLE,v 1.104 2012/12/05 05:44:16 jnemeth Exp $
+#	$NetBSD: RESPONSIBLE,v 1.105 2012/12/05 06:19:11 jnemeth Exp $
 
 List of sections of the system, and who is responsible for them (or at
 least considered an expert on them).
@@ -295,7 +295,6 @@ newsmips	core
 next68k		core
 ofppc		garbled
 pmax		simonb
-pc532		core
 pmax		simonb
 pmppc		core
 prep		garbled