CVS commit: othersrc/external/bsd/arfe/dt

2015-08-11 Thread David Young
Module Name:othersrc
Committed By:   dyoung
Date:   Tue Aug 11 21:04:59 UTC 2015

Modified Files:
othersrc/external/bsd/arfe/dt: dt.c

Log Message:
Add 2-clause BSD license and copyright notice.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 othersrc/external/bsd/arfe/dt/dt.c

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

Modified files:

Index: othersrc/external/bsd/arfe/dt/dt.c
diff -u othersrc/external/bsd/arfe/dt/dt.c:1.1 othersrc/external/bsd/arfe/dt/dt.c:1.2
--- othersrc/external/bsd/arfe/dt/dt.c:1.1	Mon Aug 10 21:10:59 2015
+++ othersrc/external/bsd/arfe/dt/dt.c	Tue Aug 11 21:04:59 2015
@@ -1,3 +1,31 @@
+/* $NetBSD: dt.c,v 1.2 2015/08/11 21:04:59 dyoung Exp $ */
+/* $Id: dt.c,v 1.2 2015/08/11 21:04:59 dyoung Exp $ */
+
+/*-
+ * Copyright (c) 2014,2015 David Young dyo...@netbsd.org
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *notice, this list of conditions and the following disclaimer.
+ * 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.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
 #include sys/cdefs.h	/* for __cacheline_aligned */
 #include sys/param.h	/* for MAX() */
 #include sys/queue.h	/* for TAILQ_*() */



CVS commit: src/sys/rump/dev/lib/libpci

2015-08-11 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Aug 11 22:28:34 UTC 2015

Modified Files:
src/sys/rump/dev/lib/libpci: rumpdev_bus_space.c

Log Message:
Fix handle typos/pastos in bus_space_barrier() calls


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/rump/dev/lib/libpci/rumpdev_bus_space.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/rump/dev/lib/libpci/rumpdev_bus_space.c
diff -u src/sys/rump/dev/lib/libpci/rumpdev_bus_space.c:1.5 src/sys/rump/dev/lib/libpci/rumpdev_bus_space.c:1.6
--- src/sys/rump/dev/lib/libpci/rumpdev_bus_space.c:1.5	Mon Jun 15 15:38:52 2015
+++ src/sys/rump/dev/lib/libpci/rumpdev_bus_space.c	Tue Aug 11 22:28:34 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: rumpdev_bus_space.c,v 1.5 2015/06/15 15:38:52 pooka Exp $	*/
+/*	$NetBSD: rumpdev_bus_space.c,v 1.6 2015/08/11 22:28:34 pooka Exp $	*/
 
 /*-
  * Copyright (c) 2013 Antti Kantee.  All Rights Reserved.
@@ -134,7 +134,7 @@ bus_space_read_multi_1(bus_space_tag_t b
 
 	while (count--) {
 		*datap++ = bus_space_read_1(bst, bsh, offset);
-		bus_space_barrier(bst, bst, offset, 1, BUS_SPACE_BARRIER_READ);
+		bus_space_barrier(bst, bsh, offset, 1, BUS_SPACE_BARRIER_READ);
 	}
 }
 
@@ -145,7 +145,7 @@ bus_space_read_multi_2(bus_space_tag_t b
 
 	while (count--) {
 		*datap++ = bus_space_read_2(bst, bsh, offset);
-		bus_space_barrier(bst, bst, offset, 2, BUS_SPACE_BARRIER_READ);
+		bus_space_barrier(bst, bsh, offset, 2, BUS_SPACE_BARRIER_READ);
 	}
 }
 
@@ -156,7 +156,7 @@ bus_space_read_multi_4(bus_space_tag_t b
 
 	while (count--) {
 		*datap++ = bus_space_read_4(bst, bsh, offset);
-		bus_space_barrier(bst, bst, offset, 4, BUS_SPACE_BARRIER_READ);
+		bus_space_barrier(bst, bsh, offset, 4, BUS_SPACE_BARRIER_READ);
 	}
 }
 
@@ -220,7 +220,7 @@ bus_space_write_multi_1(bus_space_tag_t 
 		const uint8_t value = *datap++;
 
 		bus_space_write_1(bst, bsh, offset, value);
-		bus_space_barrier(bst, bst, offset, 1, BUS_SPACE_BARRIER_WRITE);
+		bus_space_barrier(bst, bsh, offset, 1, BUS_SPACE_BARRIER_WRITE);
 	}
 }
 
@@ -233,7 +233,7 @@ bus_space_write_multi_2(bus_space_tag_t 
 		const uint16_t value = *datap++;
 
 		bus_space_write_2(bst, bsh, offset, value);
-		bus_space_barrier(bst, bst, offset, 2, BUS_SPACE_BARRIER_WRITE);
+		bus_space_barrier(bst, bsh, offset, 2, BUS_SPACE_BARRIER_WRITE);
 	}
 }
 
@@ -246,7 +246,7 @@ bus_space_write_multi_4(bus_space_tag_t 
 		const uint32_t value = *datap++;
 
 		bus_space_write_4(bst, bsh, offset, value);
-		bus_space_barrier(bst, bst, offset, 4, BUS_SPACE_BARRIER_WRITE);
+		bus_space_barrier(bst, bsh, offset, 4, BUS_SPACE_BARRIER_WRITE);
 	}
 }
 



CVS commit: [netbsd-7] src/doc

2015-08-11 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Tue Aug 11 08:29:03 UTC 2015

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Fix typos


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.365 -r1.1.2.366 src/doc/CHANGES-7.0

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

Modified files:

Index: src/doc/CHANGES-7.0
diff -u src/doc/CHANGES-7.0:1.1.2.365 src/doc/CHANGES-7.0:1.1.2.366
--- src/doc/CHANGES-7.0:1.1.2.365	Tue Aug 11 05:37:41 2015
+++ src/doc/CHANGES-7.0	Tue Aug 11 08:29:03 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-7.0,v 1.1.2.365 2015/08/11 05:37:41 snj Exp $
+# $NetBSD: CHANGES-7.0,v 1.1.2.366 2015/08/11 08:29:03 sborrill Exp $
 
 A complete list of changes from the initial NetBSD 7.0 branch on 11 Aug 2014
 until the 7.0 release:
@@ -33897,14 +33897,14 @@ sys/arch/x86/x86/coretemp.c			1.34
 
 sys/arch/x86/x86/cpu_ucode_intel.c		1.7, 1.8
 
-	Re-allocale buffer if a buffer for microcode is not 16byte
+	Re-allocate buffer if a buffer for microcode is not 16-byte
 	aligned.
 	[msaitoh, ticket #945]
 
 sys/arch/x86/x86/mpacpi.c			1.98
 
 	Fix wrong output in mpacpi_pci_foundbus() with MPVERBOSE.
-	Assign vaues before printing them.
+	Assign values before printing them.
 	[msaitoh, ticket #947]
 
 distrib/notes/common/main			patched by hand



CVS commit: src/sys/netinet6

2015-08-11 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Tue Aug 11 09:30:32 UTC 2015

Modified Files:
src/sys/netinet6: nd6.c

Log Message:
Fix double rtfree


To generate a diff of this commit:
cvs rdiff -u -r1.167 -r1.168 src/sys/netinet6/nd6.c

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

Modified files:

Index: src/sys/netinet6/nd6.c
diff -u src/sys/netinet6/nd6.c:1.167 src/sys/netinet6/nd6.c:1.168
--- src/sys/netinet6/nd6.c:1.167	Tue Aug 11 08:27:08 2015
+++ src/sys/netinet6/nd6.c	Tue Aug 11 09:30:32 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: nd6.c,v 1.167 2015/08/11 08:27:08 ozaki-r Exp $	*/
+/*	$NetBSD: nd6.c,v 1.168 2015/08/11 09:30:32 ozaki-r Exp $	*/
 /*	$KAME: nd6.c,v 1.279 2002/06/08 11:16:51 itojun Exp $	*/
 
 /*
@@ -31,7 +31,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: nd6.c,v 1.167 2015/08/11 08:27:08 ozaki-r Exp $);
+__KERNEL_RCSID(0, $NetBSD: nd6.c,v 1.168 2015/08/11 09:30:32 ozaki-r Exp $);
 
 #include opt_net_mpsafe.h
 
@@ -2248,9 +2248,6 @@ nd6_output(struct ifnet *ifp, struct ifn
 		 * it is tolerable, because this should be a rare case.
 		 */
 		if (nd6_is_addr_neighbor(dst, ifp)) {
-			if (rt != NULL  rt != rt00)
-rtfree(rt);
-
 			RTFREE_IF_NEEDED(rt);
 			rt = nd6_lookup(dst-sin6_addr, 1, ifp);
 			if (rt != NULL)



CVS commit: src/sys/netinet6

2015-08-11 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Tue Aug 11 08:27:08 UTC 2015

Modified Files:
src/sys/netinet6: nd6.c

Log Message:
Free rtentry when we successfully obtain it but return NULL


To generate a diff of this commit:
cvs rdiff -u -r1.166 -r1.167 src/sys/netinet6/nd6.c

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

Modified files:

Index: src/sys/netinet6/nd6.c
diff -u src/sys/netinet6/nd6.c:1.166 src/sys/netinet6/nd6.c:1.167
--- src/sys/netinet6/nd6.c:1.166	Fri Aug  7 08:11:33 2015
+++ src/sys/netinet6/nd6.c	Tue Aug 11 08:27:08 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: nd6.c,v 1.166 2015/08/07 08:11:33 ozaki-r Exp $	*/
+/*	$NetBSD: nd6.c,v 1.167 2015/08/11 08:27:08 ozaki-r Exp $	*/
 /*	$KAME: nd6.c,v 1.279 2002/06/08 11:16:51 itojun Exp $	*/
 
 /*
@@ -31,7 +31,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: nd6.c,v 1.166 2015/08/07 08:11:33 ozaki-r Exp $);
+__KERNEL_RCSID(0, $NetBSD: nd6.c,v 1.167 2015/08/11 08:27:08 ozaki-r Exp $);
 
 #include opt_net_mpsafe.h
 
@@ -959,6 +959,7 @@ nd6_lookup1(const struct in6_addr *addr6
 			ip6_sprintf(addr6),
 			ifp ? if_name(ifp) : unspec));
 		}
+		rtfree(rt);
 		return NULL;
 	}
 	return rt;



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

2015-08-11 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Tue Aug 11 13:12:25 UTC 2015

Modified Files:
src/sys/arch/zaurus/conf: files.zaurus

Log Message:
armfpe is gone.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/zaurus/conf/files.zaurus

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/zaurus/conf/files.zaurus
diff -u src/sys/arch/zaurus/conf/files.zaurus:1.12 src/sys/arch/zaurus/conf/files.zaurus:1.13
--- src/sys/arch/zaurus/conf/files.zaurus:1.12	Tue Sep 23 14:49:46 2014
+++ src/sys/arch/zaurus/conf/files.zaurus	Tue Aug 11 13:12:25 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: files.zaurus,v 1.12 2014/09/23 14:49:46 nonaka Exp $
+#	$NetBSD: files.zaurus,v 1.13 2015/08/11 13:12:25 nonaka Exp $
 #
 # Sharp Zaurus specific configuration info
 #
@@ -39,11 +39,6 @@ file	dev/kloader.ckloader
 file	arch/zaurus/zaurus/kloader_machdep.c	kloader
 file	arch/zaurus/zaurus/kloader_zaurus.S	kloader
 
-# ARM FPE
-file	arch/arm32/fpe-arm/armfpe_glue.S	armfpe
-file	arch/arm32/fpe-arm/armfpe_init.c	armfpe
-file	arch/arm32/fpe-arm/armfpe.s		armfpe
-
 # Include Intel XScale PXA2x0 config definitions.
 include arch/arm/xscale/files.pxa2x0
 



CVS commit: src/external/bsd/ipf/dist/man

2015-08-11 Thread Patrick Welche
Module Name:src
Committed By:   prlw1
Date:   Tue Aug 11 16:06:53 UTC 2015

Modified Files:
src/external/bsd/ipf/dist/man: ipnat.5

Log Message:
fix typos


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ipf/dist/man/ipnat.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/ipf/dist/man/ipnat.5
diff -u src/external/bsd/ipf/dist/man/ipnat.5:1.3 src/external/bsd/ipf/dist/man/ipnat.5:1.4
--- src/external/bsd/ipf/dist/man/ipnat.5:1.3	Sun Jul 22 14:27:51 2012
+++ src/external/bsd/ipf/dist/man/ipnat.5	Tue Aug 11 16:06:52 2015
@@ -1,4 +1,4 @@
-.\	$NetBSD: ipnat.5,v 1.3 2012/07/22 14:27:51 darrenr Exp $
+.\	$NetBSD: ipnat.5,v 1.4 2015/08/11 16:06:52 prlw1 Exp $
 .\
 .TH IPNAT 5
 .SH NAME
@@ -149,8 +149,8 @@ map le0 10.0.0.0/8 - 192.168.55.2/32 gr
 For TCP connections exiting a connection such as PPPoE where the MTU is
 slightly smaller than normal ethernet, it can be useful to reduce the
 Maximum Segment Size (MSS) offered by the internal machines to match,
-reducing the liklihood that the either end will attempt to send packets
-that are too big and result in fragmentation.  This is acheived using the
+reducing the likelihood that either end will attempt to send packets
+that are too big and result in fragmentation.  This is achieved using the
 .B mssclamp
 option with TCP
 .B map
@@ -356,7 +356,7 @@ rdr le0 from 1.1.0.0/16 to any - 192.16
 rdr le0 ! from 1.1.0.0/16 to any - 192.168.1.4
 .fi
 .PP
-If there is a consective set of addresses you wish to spread the packets
+If there is a consecutive set of addresses you wish to spread the packets
 over, then this can be done in one of two ways, the word range optional
 to preserve:
 .nf
@@ -402,7 +402,7 @@ feature can only be combined with
 .B round-robin
 and the use of comma.
 .PP
-For TCP and UDP packets, it is possible to both match on the destiantion
+For TCP and UDP packets, it is possible to both match on the destination
 port number and to modify it.  For example, to change the destination port
 from 80 to 3128, we would use a rule like this:
 .nf



CVS commit: src/doc

2015-08-11 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Tue Aug 11 18:11:11 UTC 2015

Modified Files:
src/doc: 3RDPARTY

Log Message:
Update for tzdata2015f


To generate a diff of this commit:
cvs rdiff -u -r1.1241 -r1.1242 src/doc/3RDPARTY

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

Modified files:

Index: src/doc/3RDPARTY
diff -u src/doc/3RDPARTY:1.1241 src/doc/3RDPARTY:1.1242
--- src/doc/3RDPARTY:1.1241	Sun Aug  9 05:45:42 2015
+++ src/doc/3RDPARTY	Tue Aug 11 18:11:11 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: 3RDPARTY,v 1.1241 2015/08/09 05:45:42 szptvlfn Exp $
+#	$NetBSD: 3RDPARTY,v 1.1242 2015/08/11 18:11:11 apb Exp $
 #
 # This file contains a list of the software that has been integrated into
 # NetBSD where we are not the primary maintainer.
@@ -1338,8 +1338,8 @@ Notes:
 Added changes from a5 - a12 manually.
 
 Package:	tz
-Version:	tzcode2015d / tzdata2015e
-Current Vers:	tzcode2015e / tzdata2015e
+Version:	tzcode2015d / tzdata2015f
+Current Vers:	tzcode2015f / tzdata2015f
 Maintainer:	Paul Eggert egg...@cs.ucla.edu
 Archive Site:	ftp://ftp.iana.org/tz/releases/
 Archive Site:	ftp://munnari.oz.au/pub/oldtz/



CVS import: src/external/public-domain/tz/dist

2015-08-11 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Tue Aug 11 18:07:13 UTC 2015

Update of /cvsroot/src/external/public-domain/tz/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv27174

Log Message:
Import tzdata2015f from ftp://ftp.iana.org/tz/releases/tzdata2015f.tar.gz

Summary of changes in tzdata2015f (2015-08-10 18:06:56 -0700):
  * North Korea switches to +0830 on 2015-08-15.
  * Uruguay no longer observes DST.
  * Moldova starts and ends DST at 00:00 UTC, not at 01:00 UTC.
  * The two characters '%z' in a zone format now stand for the UTC
offset, e.g., '-07' for seven hours behind UTC and '+0530' for
five hours and thirty minutes ahead.
  * Comments for America/Halifax and America/Glace_Bay have been improved.
  * Data entries have been simplified for Atlantic/Canary, Europe/Simferopol,
Europe/Sofia, and Europe/Tallinn.
  * Changes affecting documentation.

Status:

Vendor Tag: TZDATA
Release Tags:   TZDATA2015F

U src/external/public-domain/tz/dist/leap-seconds.list
U src/external/public-domain/tz/dist/CONTRIBUTING
U src/external/public-domain/tz/dist/Makefile
U src/external/public-domain/tz/dist/NEWS
U src/external/public-domain/tz/dist/README
U src/external/public-domain/tz/dist/Theory
U src/external/public-domain/tz/dist/africa
U src/external/public-domain/tz/dist/antarctica
U src/external/public-domain/tz/dist/asia
U src/external/public-domain/tz/dist/australasia
U src/external/public-domain/tz/dist/europe
U src/external/public-domain/tz/dist/northamerica
U src/external/public-domain/tz/dist/southamerica
U src/external/public-domain/tz/dist/pacificnew
U src/external/public-domain/tz/dist/etcetera
U src/external/public-domain/tz/dist/backward
U src/external/public-domain/tz/dist/systemv
U src/external/public-domain/tz/dist/factory
U src/external/public-domain/tz/dist/backzone
U src/external/public-domain/tz/dist/iso3166.tab
U src/external/public-domain/tz/dist/leapseconds
U src/external/public-domain/tz/dist/zone1970.tab
U src/external/public-domain/tz/dist/zone.tab
U src/external/public-domain/tz/dist/yearistype.sh
U src/external/public-domain/tz/dist/checklinks.awk
U src/external/public-domain/tz/dist/checktab.awk
U src/external/public-domain/tz/dist/leapseconds.awk
U src/external/public-domain/tz/dist/zoneinfo2tdf.pl

No conflicts created by this import



CVS commit: src/doc

2015-08-11 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Tue Aug 11 18:12:21 UTC 2015

Modified Files:
src/doc: CHANGES

Log Message:
zoneinfo: Import tzdata2015f. [apb 20150811]


To generate a diff of this commit:
cvs rdiff -u -r1.2089 -r1.2090 src/doc/CHANGES

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

Modified files:

Index: src/doc/CHANGES
diff -u src/doc/CHANGES:1.2089 src/doc/CHANGES:1.2090
--- src/doc/CHANGES:1.2089	Sat Aug  8 16:11:15 2015
+++ src/doc/CHANGES	Tue Aug 11 18:12:21 2015
@@ -1,4 +1,4 @@
-# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.2089 $
+# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.2090 $
 #
 #
 # [Note: This file does not mention every change made to the NetBSD source tree.
@@ -182,3 +182,4 @@ Changes from NetBSD 7.0 to NetBSD 8.0:
 		[jmcneill 20150808]
 	amlogicsdhc(4): Add support for UHS-I and MMC HS200 transfer modes.
 		[jmcneill 20150808]
+	zoneinfo: Import tzdata2015f. [apb 20150811]



CVS commit: src/lib/libcompat

2015-08-11 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Tue Aug 11 18:15:41 UTC 2015

Modified Files:
src/lib/libcompat/4.3: re_comp.3
src/lib/libcompat/regexp: regexp.3

Log Message:
SEE ALSO re_format(7).


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/lib/libcompat/4.3/re_comp.3
cvs rdiff -u -r1.16 -r1.17 src/lib/libcompat/regexp/regexp.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/libcompat/4.3/re_comp.3
diff -u src/lib/libcompat/4.3/re_comp.3:1.11 src/lib/libcompat/4.3/re_comp.3:1.12
--- src/lib/libcompat/4.3/re_comp.3:1.11	Thu Aug  7 16:44:16 2003
+++ src/lib/libcompat/4.3/re_comp.3	Tue Aug 11 18:15:41 2015
@@ -26,7 +26,7 @@
 .\ SUCH DAMAGE.
 .\
 .\ from: @(#)re_comp.3	8.1 (Berkeley) 6/4/93
-.\	$NetBSD: re_comp.3,v 1.11 2003/08/07 16:44:16 agc Exp $
+.\	$NetBSD: re_comp.3,v 1.12 2015/08/11 18:15:41 dholland Exp $
 .\
 .Dd June 4, 1993
 .Dt RE_COMP 3
@@ -116,7 +116,8 @@ unmatched \e).
 .Xr ex 1 ,
 .Xr fgrep 1 ,
 .Xr grep 1 ,
-.Xr regex 3
+.Xr regex 3 ,
+.Xr re_format 7
 .Sh HISTORY
 The
 .Fn re_comp

Index: src/lib/libcompat/regexp/regexp.3
diff -u src/lib/libcompat/regexp/regexp.3:1.16 src/lib/libcompat/regexp/regexp.3:1.17
--- src/lib/libcompat/regexp/regexp.3:1.16	Mon Sep  8 22:14:11 2008
+++ src/lib/libcompat/regexp/regexp.3	Tue Aug 11 18:15:41 2015
@@ -26,7 +26,7 @@
 .\ SUCH DAMAGE.
 .\
 .\ from: @(#)regexp.3	8.1 (Berkeley) 6/4/93
-.\	$NetBSD: regexp.3,v 1.16 2008/09/08 22:14:11 apb Exp $
+.\	$NetBSD: regexp.3,v 1.17 2015/08/11 18:15:41 dholland Exp $
 .\
 .Dd June 4, 1993
 .Dt REGEXP 3
@@ -287,7 +287,8 @@ or applying `+' or `*' to a possibly-nul
 .Xr expr 1 ,
 .Xr fgrep 1 ,
 .Xr grep 1 ,
-.Xr regex 3
+.Xr regex 3 ,
+.Xr re_format 7
 .Sh HISTORY
 Both code and manual page for
 .Fn regcomp ,



CVS commit: src/external/public-domain/tz

2015-08-11 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Tue Aug 11 18:10:13 UTC 2015

Modified Files:
src/external/public-domain/tz: tzdata2netbsd

Log Message:
Update for tzdata2015f:
* Fix numbering in a comment;
* Update version numbers;
* Adjust a regex to recognise Changes affecting.*data without
  the word format.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/public-domain/tz/tzdata2netbsd

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

Modified files:

Index: src/external/public-domain/tz/tzdata2netbsd
diff -u src/external/public-domain/tz/tzdata2netbsd:1.6 src/external/public-domain/tz/tzdata2netbsd:1.7
--- src/external/public-domain/tz/tzdata2netbsd:1.6	Sat Mar 21 16:42:17 2015
+++ src/external/public-domain/tz/tzdata2netbsd	Tue Aug 11 18:10:13 2015
@@ -1,20 +1,20 @@
-# $NetBSD: tzdata2netbsd,v 1.6 2015/03/21 16:42:17 apb Exp $
+# $NetBSD: tzdata2netbsd,v 1.7 2015/08/11 18:10:13 apb Exp $
 
 # For use by NetBSD developers when updating to new versions of tzdata.
 #
 # 0. Be in an up-to-date checkout of src/external/public-domain/tz
 #from NetBSD-current.
 # 1. Edit OLDVER and NEWVER below.
-# 3. Run this script.  You will be prompted for confirmation before
+# 2. Run this script.  You will be prompted for confirmation before
 #anything major (such as a cvs operation).
-# 4. If something fails, abort the script and fix it.
-# 5. Re-run this script until you are happy.  It's designed to
+# 3. If something fails, abort the script and fix it.
+# 4. Re-run this script until you are happy.  It's designed to
 #be re-run over and over, and later runs will try not to
 #redo non-trivial work done by earlier runs.
 #
 
-OLDVER=2015a
-NEWVER=2015b
+OLDVER=2015e
+NEWVER=2015f
 
 # Uppercase variants of OLDVER and NEWVER
 OLDVER_UC=$( echo ${OLDVER} | tr '[a-z]' '[A-Z]' )
@@ -232,7 +232,7 @@ EOF
 		/^$/ { blankline = 1; havesentence = 0; }
 		/^  Changes affecting/ { goodsection = 0; }
 		/^  Changes affecting.*time/ { goodsection = 1; }
-		/^  Changes affecting.*data format/ { goodsection = 1; }
+		/^  Changes affecting.*data/ { goodsection = 1; }
 		/^  Changes affecting.*documentation/ || \
 		/^  Changes affecting.*commentary/ {
 			t = gensub(^ *, , 1, $0);



CVS commit: src/sys/net

2015-08-11 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Wed Aug 12 02:20:31 UTC 2015

Modified Files:
src/sys/net: if_ethersubr.c

Log Message:
Tidy up header inclusions


To generate a diff of this commit:
cvs rdiff -u -r1.210 -r1.211 src/sys/net/if_ethersubr.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/if_ethersubr.c
diff -u src/sys/net/if_ethersubr.c:1.210 src/sys/net/if_ethersubr.c:1.211
--- src/sys/net/if_ethersubr.c:1.210	Thu Jun  4 09:19:59 2015
+++ src/sys/net/if_ethersubr.c	Wed Aug 12 02:20:31 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_ethersubr.c,v 1.210 2015/06/04 09:19:59 ozaki-r Exp $	*/
+/*	$NetBSD: if_ethersubr.c,v 1.211 2015/08/12 02:20:31 ozaki-r Exp $	*/
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -61,7 +61,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: if_ethersubr.c,v 1.210 2015/06/04 09:19:59 ozaki-r Exp $);
+__KERNEL_RCSID(0, $NetBSD: if_ethersubr.c,v 1.211 2015/08/12 02:20:31 ozaki-r Exp $);
 
 #include opt_inet.h
 #include opt_atalk.h
@@ -76,21 +76,12 @@ __KERNEL_RCSID(0, $NetBSD: if_ethersubr
 #include arp.h
 #include agr.h
 
-#include sys/param.h
-#include sys/systm.h
 #include sys/sysctl.h
-#include sys/kernel.h
-#include sys/callout.h
 #include sys/malloc.h
 #include sys/mbuf.h
-#include sys/protosw.h
-#include sys/socket.h
+#include sys/mutex.h
 #include sys/ioctl.h
 #include sys/errno.h
-#include sys/syslog.h
-#include sys/kauth.h
-#include sys/cpu.h
-#include sys/intr.h
 #include sys/device.h
 #include sys/rnd.h
 #include sys/rndsource.h
@@ -101,6 +92,7 @@ __KERNEL_RCSID(0, $NetBSD: if_ethersubr
 #include net/if_llc.h
 #include net/if_dl.h
 #include net/if_types.h
+#include net/pktqueue.h
 
 #include net/if_media.h
 #include dev/mii/mii.h